Skip to content

Commit 7cd7463

Browse files
authored
bug: respect 'install_only' action input value (#147)
Signed-off-by: Mateusz Szostok <szostok.mateusz@gmail.com>
1 parent 50ea670 commit 7cd7463

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ inputs:
5656
default: "false"
5757
install_only:
5858
description: "Skips cluster creation, only install kind (default: false)"
59+
default: "false"
5960
required: false
6061
ignore_failed_clean:
6162
description: "Whether to ignore the post-delete the cluster (default: false)"

main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ main() {
5858
fi
5959

6060
if [[ -n "${INPUT_INSTALL_ONLY:-}" ]]; then
61-
args+=(--install-only)
61+
args+=(--install-only "${INPUT_INSTALL_ONLY}")
6262
fi
6363

6464
if [[ -n "${INPUT_REGISTRY:-}" ]]; then

0 commit comments

Comments
 (0)