Skip to content

Commit

Permalink
update github token (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
phnx47-bot authored Jan 5, 2025
1 parent 90ead1d commit 219e8d0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ jobs:
with:
name: packages
- name: Push to pkg.github.com
run: dotnet nuget push "*.nupkg" -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json -k ${{ secrets.GH_FULL_PAT }} --skip-duplicate
run: |
dotnet nuget push "*.nupkg" \
--skip-duplicate \
-k ${{ secrets.GITHUB_TOKEN }} \
-s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
release:
name: Create GitHub release
Expand Down Expand Up @@ -85,4 +89,7 @@ jobs:
with:
name: packages
- name: Push to nuget.org
run: dotnet nuget push "*.nupkg" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }}
run: |
dotnet nuget push "*.nupkg" \
-k ${{ secrets.NUGET_DEPLOY_KEY }} \
-s https://api.nuget.org/v3/index.json

0 comments on commit 219e8d0

Please sign in to comment.