mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-15 10:10:42 +00:00
* Adding graphql query to fetch latest helm release of specified type * Updating typescript version and js file * Fixing PR comments in release * Adding feature flag as environment variable in release * Changing feature flag name * Updating files as per latest changes in master after resolving merge conflicts * Removing non prod modules
19 lines
489 B
YAML
19 lines
489 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'
|
|
token:
|
|
description: 'Github token'
|
|
default: ${{ github.token }}
|
|
required: true
|
|
outputs:
|
|
helm-path:
|
|
description: 'Path to the cached helm binary'
|
|
branding:
|
|
color: 'blue'
|
|
runs:
|
|
using: 'node12'
|
|
main: 'lib/run.js' |