mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
514 B
26 lines
514 B
name: "hello"
|
|
version: "0.1.0"
|
|
usage: "usage"
|
|
description: |-
|
|
description
|
|
platformCommand:
|
|
- os: linux
|
|
arch:
|
|
command: "sh"
|
|
args: ["-c", "${HELM_PLUGIN_DIR}/hello.sh"]
|
|
- os: windows
|
|
arch:
|
|
command: "pwsh"
|
|
args: ["-c", "${HELM_PLUGIN_DIR}/hello.ps1"]
|
|
ignoreFlags: true
|
|
platformHooks:
|
|
install:
|
|
- os: linux
|
|
arch: ""
|
|
command: "sh"
|
|
args: ["-c", 'echo "installing..."']
|
|
- os: windows
|
|
arch: ""
|
|
command: "pwsh"
|
|
args: ["-c", 'echo "installing..."']
|