Skip to content

Commit 4685f01

Browse files
authored
build: do not skip symbols publish
1 parent d9b87fb commit 4685f01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
156156
run: |
157157
foreach($file in (Get-ChildItem $env:NuGetDirectory -Recurse -Include *.nupkg)) {
158-
dotnet nuget push $file --api-key $env:GITHUB_TOKEN --skip-duplicate --no-symbols
158+
dotnet nuget push $file --api-key $env:GITHUB_TOKEN --skip-duplicate
159159
}
160160
if: |
161161
success()
@@ -167,7 +167,7 @@ jobs:
167167
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
168168
run: |
169169
foreach($file in (Get-ChildItem $env:NuGetDirectory -Recurse -Include *.nupkg)) {
170-
dotnet nuget push $file --api-key $env:NUGET_APIKEY --source https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
170+
dotnet nuget push $file --api-key $env:NUGET_APIKEY --source https://api.nuget.org/v3/index.json --skip-duplicate
171171
}
172172
if: |
173173
success()

0 commit comments

Comments
 (0)