We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefbe77 commit 1c0d91cCopy full SHA for 1c0d91c
1 file changed
.github/workflows/nuget-publish.yml
@@ -66,4 +66,6 @@ jobs:
66
67
- name: Publish to NuGet
68
# TODO: revert to: if: steps.version.outputs.changed == 'true'
69
- run: dotnet nuget push packages/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
+ env:
70
+ NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
71
+ run: dotnet nuget push packages/*.nupkg --api-key "$NUGET_API_KEY" --source https://api.nuget.org/v3/index.json --skip-duplicate
0 commit comments