We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b62da9 commit 446a953Copy full SHA for 446a953
1 file changed
.github/workflows/release.yml
@@ -5,6 +5,9 @@ on:
5
tags:
6
- 'v*'
7
8
+env:
9
+ NUGET_AUTH_TOKEN: ${{secrets.NUGET_API_KEY}}
10
+
11
jobs:
12
build-and-publish:
13
runs-on: ubuntu-latest
@@ -28,4 +31,4 @@ jobs:
28
31
run: dotnet pack --configuration Release --no-build
29
32
30
33
- name: Push to NuGet
- run: dotnet nuget push "bin/Release/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
34
+ run: dotnet nuget push "bin/Release/*.nupkg" --skip-duplicate
0 commit comments