mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
* feat(ci): add missing powershell scripts & fix related grunt code * feat(ci): download binaries direct to dist directory * feat(ci): correctly pass in binary versions * feat(ci): fix powershell errors * feat(ci): fix cmdlet syntax * feat(ci): fix typo * feat(ci): fix additonal typo
7 lines
222 B
PowerShell
7 lines
222 B
PowerShell
param (
|
|
[string]$kubectl_version
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop";
|
|
|
|
Invoke-WebRequest -O "dist/kubectl.exe" "https://storage.googleapis.com/kubernetes-release/release/$($kubectl_version)/bin/windows/amd64/kubectl.exe"
|