mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
feat(ci): add missing powershell scripts & fix related grunt code (#4345)
* 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
This commit is contained in:
parent
d4c4c4e895
commit
e479e41aee
3 changed files with 25 additions and 8 deletions
7
build/download_kubectl_binary.ps1
Normal file
7
build/download_kubectl_binary.ps1
Normal file
|
@ -0,0 +1,7 @@
|
|||
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"
|
Loading…
Add table
Add a link
Reference in a new issue