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 96ed34d commit 62fc1c1Copy full SHA for 62fc1c1
.github/workflows/publish.yml
@@ -11,6 +11,8 @@ jobs:
11
with:
12
dotnet-version: 6.0.x
13
- run: dotnet pack
14
- - run: dotnet nuget push 'ScipDotnet/bin/Debug/*.nupkg' -s 'https://api.nuget.org/v3/index.json' -k '${{ secrets.NUGET_APIKEY }}' --skip-duplicate
+ - run: dotnet nuget push 'ScipDotnet/bin/Debug/*.nupkg' -s 'https://api.nuget.org/v3/index.json' --api-key '$NUGET_APIKEY' --skip-duplicate
15
+ env:
16
+ NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
17
18
0 commit comments