2022-06-28 01:27:44 +03: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'
|
2021-03-30 20:13:44 +03:00
|
|
|
inputs:
|
2022-06-28 01:27:44 +03:00
|
|
|
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
|
2024-02-08 21:49:56 +03:00
|
|
|
default: '${{ github.token }}'
|
2024-01-02 17:30:48 +03:00
|
|
|
downloadBaseURL:
|
|
|
|
description: 'Set the download base URL'
|
|
|
|
required: false
|
|
|
|
default: 'https://get.helm.sh'
|
2019-10-04 09:46:40 +03:00
|
|
|
outputs:
|
2022-06-28 01:27:44 +03:00
|
|
|
helm-path:
|
|
|
|
description: 'Path to the cached helm binary'
|
2019-10-04 09:46:40 +03:00
|
|
|
branding:
|
2022-06-28 01:27:44 +03:00
|
|
|
color: 'blue'
|
2019-10-04 09:46:40 +03:00
|
|
|
runs:
|
2024-02-08 21:49:56 +03:00
|
|
|
using: 'node20'
|
2022-06-28 01:27:44 +03:00
|
|
|
main: 'lib/index.js'
|