Bläddra i källkod

Merge branch 'master' into develop

release/3.x.x
Christian Kratky 5 år sedan
förälder
incheckning
d5b0893e90
1 ändrade filer med 5 tillägg och 1 borttagningar
  1. +5
    -1
      Build/upload.ps1

+ 5
- 1
Build/upload.ps1 Visa fil

@@ -1,9 +1,13 @@
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"
foreach ($file in $files)
{
Write-Host "Uploading: " $file

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

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

Laddar…
Avbryt
Spara