We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6bbb02 commit feea1a2Copy full SHA for feea1a2
1 file changed
.github/workflows/dotnet-ci.yaml
@@ -66,7 +66,7 @@ jobs:
66
continue-on-error: true # 即便推送失败也继续创建GitHub Release
67
run: |
68
$apiKey = '${{ steps.login.outputs.NUGET_API_KEY }}'
69
- $nupkgs = Get-ChildItem ./nupkgs/*.nupkg
+ $nupkgs = Get-ChildItem ./nupkgs/*.nupkg | Where-Object { $_.Name -notlike '*.snupkg' }
70
foreach ($nupkg in $nupkgs) {
71
Write-Host "推送 $($nupkg.Name)..."
72
dotnet nuget push $nupkg.FullName `
0 commit comments