We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab11920 commit 82b0049Copy full SHA for 82b0049
.github/workflows/ci.yml
@@ -80,7 +80,11 @@ jobs:
80
with:
81
name: nupkgs
82
- name: Push to GitHub
83
- run: dotnet nuget push "**/*.nupkg" -s https://nuget.pkg.github.com/phnx47/index.json -k ${{ secrets.GH_PKG_PAT }}
+ run: |
84
+ dotnet nuget push "**/*.nupkg" \
85
+ --skip-duplicate \
86
+ -k ${{ secrets.GITHUB_TOKEN }} \
87
+ -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
88
89
nuget:
90
name: Deploy to NuGet
@@ -93,4 +97,7 @@ jobs:
93
97
94
98
95
99
- name: Push to NuGet
96
- run: dotnet nuget push "**/*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
100
101
102
+ -k ${{ secrets.NUGET_KEY }} \
103
+ -s https://api.nuget.org/v3/index.json
0 commit comments