Skip to content

Commit

Permalink
build: do not skip symbols publish
Browse files Browse the repository at this point in the history
  • Loading branch information
berezovskyi authored Dec 6, 2024
1 parent d9b87fb commit 4685f01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
foreach($file in (Get-ChildItem $env:NuGetDirectory -Recurse -Include *.nupkg)) {
dotnet nuget push $file --api-key $env:GITHUB_TOKEN --skip-duplicate --no-symbols
dotnet nuget push $file --api-key $env:GITHUB_TOKEN --skip-duplicate
}
if: |
success()
Expand All @@ -167,7 +167,7 @@ jobs:
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
run: |
foreach($file in (Get-ChildItem $env:NuGetDirectory -Recurse -Include *.nupkg)) {
dotnet nuget push $file --api-key $env:NUGET_APIKEY --source https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
dotnet nuget push $file --api-key $env:NUGET_APIKEY --source https://api.nuget.org/v3/index.json --skip-duplicate
}
if: |
success()
Expand Down

0 comments on commit 4685f01

Please sign in to comment.