Skip to content

Commit

Permalink
Added support for GitHub Packages, #4 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
hjerpbakk authored Oct 23, 2019
1 parent 758dad9 commit 4c2990b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,7 @@ jobs:
run: |
chmod +x pack.sh
./pack.sh
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 }}
nuget source Add -Name "GitHub" -Source "https://nuget.pkg.github.com/Sankra/index.json" -UserName Sankra -Password ${{ secrets.GITHUB_TOKEN }}
nuget push ./nupkgs/*.nupkg -Source "GitHub"
shell: bash

0 comments on commit 4c2990b

Please sign in to comment.