setup-kubectl/action.yml

16 lines
428 B
YAML
Raw Normal View History

2022-02-10 21:52:09 +01:00
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:
2019-09-10 12:10:21 +02:00
version:
2022-02-10 21:52:09 +01:00
description: "Version of kubectl"
2019-09-10 12:10:21 +02:00
required: true
2022-02-10 21:52:09 +01:00
default: "latest"
2019-09-10 12:10:21 +02:00
outputs:
kubectl-path:
2022-02-10 21:52:09 +01:00
description: "Path to the cached kubectl binary"
2019-09-10 12:10:21 +02:00
branding:
2022-02-10 21:52:09 +01:00
color: "blue"
2019-09-10 12:10:21 +02:00
runs:
2022-02-10 21:52:09 +01:00
using: "node12"
main: "lib/index.js"