setup-kubectl/action.yml

16 lines
428 B
YAML
Raw Normal View History

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