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 8920092 commit 2036f5bCopy full SHA for 2036f5b
.github/workflows/dotnet.yml
@@ -119,9 +119,5 @@ jobs:
119
path: ${{ env.NuGetDir }}
120
- name: Setup .NET
121
uses: actions/setup-dotnet@v4
122
- with:
123
- source-url: https://api.nuget.org/v3/index.json
124
- env:
125
- NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }}
126
- name: Publish to NuGet
127
- run: dotnet nuget push ${{ env.NuGetDir }}/*.nupkg --skip-duplicate
+ run: dotnet nuget push --api-key "${{ secrets.NUGET_API_KEY }}" ${{ env.NuGetDir }}/*.nupkg --source https://api.nuget.org/v3/index.json --skip-duplicate
0 commit comments