Skip to content

Commit

Permalink
dollar sign missing for env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
tekgator committed May 29, 2023
1 parent 78f0ffe commit 9d9e4d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: dotnet pack ${{ env.PROJECT_PATH }} --no-restore --configuration Release --p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.PACKAGE_OUTPUT_DIR }}

- name: "Push package"
run: dotnet nuget push ${{ env.PACKAGE_OUTPUT_DIR }}/{{ env.NUGET_NAME }} --api-key ${{ secrets.NUGET_AUTH_TOKEN }} --source ${{ env.NUGET_SOURCE_URL }}
run: dotnet nuget push ${{ env.PACKAGE_OUTPUT_DIR }}/${{ env.NUGET_NAME }} --api-key ${{ secrets.NUGET_AUTH_TOKEN }} --source ${{ env.NUGET_SOURCE_URL }}

# - name: "Attach Nuget to release"
# uses: AButler/upload-release-assets@v2.0
Expand Down

0 comments on commit 9d9e4d3

Please sign in to comment.