Files
setup-helm/action.yml

16 lines
398 B
YAML
Raw Normal View History

name: "Helm tool installer"
description: "Install a specific version of helm binary. Acceptable values are latest or any semantic version string like 1.15.0"
inputs:
2019-10-04 12:16:40 +05:30
version:
description: "Version of helm"
2019-10-04 12:16:40 +05:30
required: true
default: "latest"
2019-10-04 12:16:40 +05:30
outputs:
helm-path:
description: "Path to the cached helm binary"
2019-10-04 12:16:40 +05:30
branding:
color: "blue"
2019-10-04 12:16:40 +05:30
runs:
using: "node12"
main: "lib/index.js"