Skip to content

Commit

Permalink
more action fixing attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
Zack Way authored and Zack Way committed Jun 23, 2023
1 parent 87b0182 commit e99535f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: GitHub Package Auth
run: dotnet nuget add source --username seiggy --password ${{ secrets.GHTOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/seiggy/index.json"
- name: Create NuGet Packages
run: dotnet pack --configuration Release --include-symbols --include-source
- name: Publish NuGet Packages
run: dotnet nuget push "Arke.ARI/**/*.nupkg" --source "github" --skip-duplicate
run: |
dotnet nuget add source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --username ${{ github.repository_owner }} --password ${{ github.token }} --store-password-in-clear-text --name github
dotnet nuget push "Arke.ARI/**/*.nupkg" --source github --skip-duplicate

0 comments on commit e99535f

Please sign in to comment.