We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1afcdf0 commit 8558db9Copy full SHA for 8558db9
Push.ps1
@@ -6,7 +6,7 @@ if ([string]::IsNullOrEmpty($Env:NUGET_API_KEY)) {
6
} else {
7
Get-ChildItem $artifacts -Filter "*.nupkg" | ForEach-Object {
8
Write-Host "$($scriptName): Pushing $($_.Name)"
9
- dotnet nuget push $_ --source $Env:NUGET_URL --api-key $Env:NUGET_API_KEY
+ dotnet nuget push $_ --source $Env:NUGET_URL --api-key $Env:NUGET_API_KEY --skip-duplicate
10
if ($lastexitcode -ne 0) {
11
throw ("Exec: " + $errorMessage)
12
}
0 commit comments