We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f2aa48 commit 2925330Copy full SHA for 2925330
1 file changed
.github/workflows/publish-nuget-Package.yml
@@ -28,5 +28,7 @@ jobs:
28
run: dotnet pack --configuration=Release QueryDB/QueryDB.csproj
29
30
- name: Publish Nuget Package
31
- run: dotnet nuget push QueryDB/bin/Release/${{ env.NUGET_PACKAGE_NAME_VERSION }} -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
+ env:
32
+ NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
33
+ run: dotnet nuget push QueryDB/bin/Release/${{ env.NUGET_PACKAGE_NAME_VERSION }} -s https://api.nuget.org/v3/index.json -k $NUGET_API_KEY
34
0 commit comments