Files
setup-helm/action.yml

16 lines
411 B
YAML
Raw Normal View History

2022-07-11 13:48:02 -04:00
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:
2022-07-11 13:48:02 -04:00
version:
description: 'Version of helm'
required: true
default: 'latest'
2019-10-04 12:16:40 +05:30
outputs:
2022-07-11 13:48:02 -04:00
helm-path:
description: 'Path to the cached helm binary'
2019-10-04 12:16:40 +05:30
branding:
2022-07-11 13:48:02 -04:00
color: 'blue'
2019-10-04 12:16:40 +05:30
runs:
2022-07-11 13:48:02 -04:00
using: 'node16'
main: 'lib/index.js'