setup-kubectl-cn/action.yml
suisrc 6563d5d80a
Some checks failed
Run unit tests. / build (push) Has been cancelled
Run prettify / Prettier Check (push) Has been cancelled
Integration test for setup-kubectl / Validate release and master branch (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
add tool custom url
2025-05-15 10:40:34 +08:00

20 lines
510 B
YAML

name: 'Kubectl tool installer'
description: 'Install a specific version of kubectl binary. Acceptable values are latest or any semantic version string like 1.15.0'
inputs:
version:
description: 'Version of kubectl'
required: true
default: 'latest'
url:
description: 'Url of kubectl'
required: false
default: ''
outputs:
kubectl-path:
description: 'Path to the cached kubectl binary'
branding:
color: 'blue'
runs:
using: 'node20'
main: 'lib/index.js'