Skip to content

Commit e8e63c7

Browse files
committed
Simplify GitHub nuget push
With no symbols being generated, no reason to have the symbol skip flag
1 parent 7e5e4a6 commit e8e63c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- name: 'Add NuGet source'
9292
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
9393
- name: 'Upload NuGet package'
94-
run: dotnet nuget push *.nupkg --api-key ${{secrets.GH_PACKAGE_REGISTRY_API_KEY}} --source GitHub --skip-duplicate --no-symbols true
94+
run: dotnet nuget push *.nupkg --api-key ${{secrets.GH_PACKAGE_REGISTRY_API_KEY}} --source GitHub --skip-duplicate
9595

9696
push-to-nuget:
9797
name: 'Push NuGet Packages'

0 commit comments

Comments
 (0)