We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50ea670 commit 7cd7463Copy full SHA for 7cd7463
action.yml
@@ -56,6 +56,7 @@ inputs:
56
default: "false"
57
install_only:
58
description: "Skips cluster creation, only install kind (default: false)"
59
+ default: "false"
60
required: false
61
ignore_failed_clean:
62
description: "Whether to ignore the post-delete the cluster (default: false)"
main.sh
@@ -58,7 +58,7 @@ main() {
fi
if [[ -n "${INPUT_INSTALL_ONLY:-}" ]]; then
- args+=(--install-only)
+ args+=(--install-only "${INPUT_INSTALL_ONLY}")
63
64
if [[ -n "${INPUT_REGISTRY:-}" ]]; then
0 commit comments