mirror of
https://github.com/helm/helm.git
synced 2026-02-03 20:39:45 -05:00
25 lines
514 B
YAML
25 lines
514 B
YAML
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..."']
|