Skip to content

Commit

Permalink
shuffle command
Browse files Browse the repository at this point in the history
  • Loading branch information
thepigeongenerator committed Jun 19, 2024
1 parent 01f5934 commit 96c77ed
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ jobs:
# push nuget repo (package is created on build as the configuration in the csproj file)
- name: add nuget package to repo
run: |
dotnet nuget add source --username ${{ github.repository_owner }} --password ${{ secrets.PACKAGE_MANAGEMENT }} --name "github" "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
dotnet nuget push "QUtil/bin/Release/QUtil.MonoGame.Render*.nupkg" --source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" --skip-duplicate --no-symbols
echo "secrets.PACKAGE_MANAGEMENT: ${{ secrets.PACKAGE_MANAGEMENT }}"
dotnet nuget add source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --name "github" --username ${{ github.repository_owner }} --password ${{ secrets.PACKAGE_MANAGEMENT }}
dotnet nuget push "QUtil/bin/Release/QUtil.MonoGame.Render*.nupkg" --source "github" --skip-duplicate --no-symbols

0 comments on commit 96c77ed

Please sign in to comment.