File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 5454 with :
5555 name : packages
5656 - name : Push to pkg.github.com
57- run : dotnet nuget push "*.nupkg" -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json -k ${{ secrets.GH_FULL_PAT }} --skip-duplicate
57+ run : |
58+ dotnet nuget push "*.nupkg" \
59+ --skip-duplicate \
60+ -k ${{ secrets.GITHUB_TOKEN }} \
61+ -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
5862
5963 release :
6064 name : Create GitHub release
8589 with :
8690 name : packages
8791 - name : Push to nuget.org
88- run : dotnet nuget push "*.nupkg" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }}
92+ run : |
93+ dotnet nuget push "*.nupkg" \
94+ -k ${{ secrets.NUGET_DEPLOY_KEY }} \
95+ -s https://api.nuget.org/v3/index.json
You can’t perform that action at this time.
0 commit comments