Skip to content

Commit d1ca4e6

Browse files
committed
Fix workflow
1 parent a5c9349 commit d1ca4e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
dotnet-version: 8.0.x
2323
source-url: https://api.nuget.org/v3/index.json
2424
env:
25-
NUGET_AUTH_TOKEN: ${{secrets.NUGET_API_KEY}}
25+
NUGET_AUTH_TOKEN: ${{secrets.NUGET_AUTH_TOKEN}}
2626
- name: Install dependencies
2727
working-directory: src
2828
run: dotnet restore
@@ -40,7 +40,7 @@ jobs:
4040
src/out/*
4141
- name: Publish Nuget packages to Nuget registry
4242
working-directory: src
43-
run: dotnet nuget push "out/*" -k ${{secrets.NUGET_API_KEY}}
43+
run: dotnet nuget push "out/*" -k ${{secrets.NUGET_AUTH_TOKEN}}
4444
- name: Upload Nuget packages as release artifacts
4545
uses: actions/github-script@v7
4646
with:

0 commit comments

Comments
 (0)