Преглед изворни кода

Merge branch 'master' into develop

release/3.x.x
Christian Kratky пре 5 година
родитељ
комит
d5b0893e90
1 измењених фајлова са 5 додато и 1 уклоњено
  1. +5
    -1
      Build/upload.ps1

+ 5
- 1
Build/upload.ps1 Прегледај датотеку

@@ -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

Loading…
Откажи
Сачувај