Browse Source

Merge branch 'master' into develop

release/3.x.x
Christian Kratky 5 years ago
parent
commit
d5b0893e90
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      Build/upload.ps1

+ 5
- 1
Build/upload.ps1 View File

@@ -1,9 +1,13 @@
param([string]$apiKey) param([string]$apiKey)


Invoke-WebRequest -Uri "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -OutFile "nuget.exe"

$files = Get-ChildItem -Path ".\NuGet" -Filter "*.nupkg" $files = Get-ChildItem -Path ".\NuGet" -Filter "*.nupkg"
foreach ($file in $files) foreach ($file in $files)
{ {
Write-Host "Uploading: " $file Write-Host "Uploading: " $file


.\nuget.exe push $file.Fullname $apiKey -NoSymbols -Source https://api.nuget.org/v3/index.json .\nuget.exe push $file.Fullname $apiKey -NoSymbols -Source https://api.nuget.org/v3/index.json
}
}

Remove-Item "nuget.exe" -Force -Recurse -ErrorAction SilentlyContinue

Loading…
Cancel
Save