setup-helm/action.yml

19 строки
515 B
YAML
Исходник Обычный вид История

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:
version:
description: 'Version of helm'
required: true
default: 'latest'
2022-07-25 20:13:50 +03:00
token:
description: GitHub token. Required only if 'version' == 'latest'
required: false
2019-10-04 09:46:40 +03:00
outputs:
helm-path:
description: 'Path to the cached helm binary'
2019-10-04 09:46:40 +03:00
branding:
color: 'blue'
2019-10-04 09:46:40 +03:00
runs:
using: 'node16'
main: 'lib/index.js'