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 94a21c9 commit 698cb9dCopy full SHA for 698cb9d
.github/workflows/build.yml
@@ -95,4 +95,7 @@ jobs:
95
env:
96
VERSION: ${{ needs.get-version.outputs.tag }}
97
API_KEY: ${{ secrets.NUGET_PASSWORD }}
98
- run: dotnet nuget push "bin/Release/Sprout.${VERSION:1}.nupkg" --api-key ${API_KEY} --source nuget --skip-duplicate
+ NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
99
+ run: |
100
+ dotnet nuget push "bin/Release/Sprout.${VERSION:1}.nupkg" --api-key ${API_KEY} --source nuget --skip-duplicate
101
+ dotnet nuget push "bin/Release/Sprout.${VERSION:1}.nupkg" --api-key ${NUGET_APIKEY} --source https://api.nuget.org/v3/index.json --skip-duplicate
0 commit comments