add skip-packaging option (#109)
Signed-off-by: Gary Morse <gmorse81@gmail.com> Signed-off-by: Gary Morse <gmorse81@gmail.com>
This commit is contained in:
+9
-2
@@ -20,10 +20,13 @@ inputs:
|
||||
description: "The GitHub Pages URL to the charts repo (default: https://<owner>.github.io/<repo>)"
|
||||
required: false
|
||||
install_dir:
|
||||
description: 'Where to install the cr tool'
|
||||
description: "Where to install the cr tool"
|
||||
required: false
|
||||
install_only:
|
||||
description: 'Just install cr tool'
|
||||
description: "Just install cr tool"
|
||||
required: false
|
||||
skip_packaging:
|
||||
description: "skip the packaging option (do your custom packaging before running this action"
|
||||
required: false
|
||||
|
||||
runs:
|
||||
@@ -61,5 +64,9 @@ runs:
|
||||
args+=(--install-only "${{ inputs.install_only }}")
|
||||
fi
|
||||
|
||||
if [[ -n "${{ inputs.skip_packaging }}" ]]; then
|
||||
args+=(--skip-packaging "${{ inputs.skip_packaging }}")
|
||||
fi
|
||||
|
||||
"$GITHUB_ACTION_PATH/cr.sh" "${args[@]}"
|
||||
shell: bash
|
||||
|
||||
Reference in New Issue
Block a user