File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change 54
54
with :
55
55
name : packages
56
56
- name : Push to pkg.github.com
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
57
+ run : dotnet nuget push "*.nupkg" -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json -k ${{ secrets.GH_FULL_PAT }} --skip-duplicate
62
58
63
59
release :
64
60
name : Create GitHub release
89
85
with :
90
86
name : packages
91
87
- name : Push to nuget.org
92
- run : |
93
- dotnet nuget push "*.nupkg" \
94
- -k ${{ secrets.NUGET_DEPLOY_KEY }} \
95
- -s https://api.nuget.org/v3/index.json
88
+ run : dotnet nuget push "*.nupkg" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }}
You can’t perform that action at this time.
0 commit comments