Skip to content

Commit

Permalink
Simplify GitHub nuget push
Browse files Browse the repository at this point in the history
With no symbols being generated, no reason to have the symbol skip flag
  • Loading branch information
Turnerj committed Feb 4, 2022
1 parent 7e5e4a6 commit e8e63c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
- name: 'Add NuGet source'
run: dotnet nuget add source https://nuget.pkg.github.com/TurnerSoftware/index.json --name GitHub --username Turnerj --password ${{secrets.GITHUB_TOKEN}} --store-password-in-clear-text
- name: 'Upload NuGet package'
run: dotnet nuget push *.nupkg --api-key ${{secrets.GH_PACKAGE_REGISTRY_API_KEY}} --source GitHub --skip-duplicate --no-symbols true
run: dotnet nuget push *.nupkg --api-key ${{secrets.GH_PACKAGE_REGISTRY_API_KEY}} --source GitHub --skip-duplicate

push-to-nuget:
name: 'Push NuGet Packages'
Expand Down

0 comments on commit e8e63c7

Please sign in to comment.