Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading