We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 758dad9 commit 4c2990bCopy full SHA for 4c2990b
.github/workflows/release.yml
@@ -24,5 +24,7 @@ jobs:
24
run: |
25
chmod +x pack.sh
26
./pack.sh
27
- nuget push ./nupkgs/*.nupkg -Source https://www.nuget.org/api/v2/package -ApiKey ${{ secrets.NUGET_KEY }}
+ nuget push ./nupkgs/*.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NUGET_KEY }}
28
+ nuget source Add -Name "GitHub" -Source "https://nuget.pkg.github.com/Sankra/index.json" -UserName Sankra -Password ${{ secrets.GITHUB_TOKEN }}
29
+ nuget push ./nupkgs/*.nupkg -Source "GitHub"
30
shell: bash
0 commit comments