Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
genlu committed Oct 16, 2024
1 parent 909d2e9 commit 07153b2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions eng/publish-assets.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ function Publish-Nuget($publishData, [string]$packageDir) {
throw "$nupkg does not exist"
}

if ($nupkg.EndsWith(".symbols.nupkg")) {
Write-Host "Skipping symbol package $nupkg"
continue
}

$nupkgWithoutVersion = $nupkg -replace '(\.\d+){3}-.*.nupkg', ''
if ($nupkgWithoutVersion.EndsWith(".Symbols")) {
Write-Host "Skipping symbol package $nupkg"
Expand Down

0 comments on commit 07153b2

Please sign in to comment.