From dc7210940c7e9df6c5673143c226c00de3447798 Mon Sep 17 00:00:00 2001 From: Jan Calanog Date: Wed, 5 Jun 2024 18:52:22 +0200 Subject: [PATCH] Fix dry-run input in oblt-cli/create-cluster-ccs (#36) --- oblt-cli/cluster-create-ccs/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oblt-cli/cluster-create-ccs/action.yml b/oblt-cli/cluster-create-ccs/action.yml index b977197d..a69155c6 100644 --- a/oblt-cli/cluster-create-ccs/action.yml +++ b/oblt-cli/cluster-create-ccs/action.yml @@ -72,7 +72,7 @@ runs: core.setOutput('ELASTICSEARCH_DOCKER_IMAGE', `--elasticsearch-docker-image=${elasticsearch_docker_image}`) } - if (dry_run) { + if (dry_run !== 'false') { core.setOutput('DRY_RUN', `--dry-run`) }