From bfe8dc4484331411cf414eefdc78a63ba4fa4a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Anguita=20L=C3=B3pez?= Date: Wed, 1 Jul 2026 16:24:48 +0200 Subject: [PATCH] add logic to accept version, stage and tag input together --- .github/workflows/5_bumper_repository.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/5_bumper_repository.yml b/.github/workflows/5_bumper_repository.yml index 81d2913c..9f19be22 100644 --- a/.github/workflows/5_bumper_repository.yml +++ b/.github/workflows/5_bumper_repository.yml @@ -100,6 +100,8 @@ jobs: if [[ -n "$version" && -n "$stage" && "$tag" != "true" ]]; then script_params="--version ${version} --stage ${stage}" + elif [[ -n "$version" && -n "$stage" && "$tag" == "true" ]]; then + script_params="--version ${version} --stage ${stage} --tag" elif [[ -z "$version" && -n "$stage" && "$tag" == "true" ]]; then script_params="--stage ${stage} --tag" elif [[ -z "$version" && -z "$stage" && "$tag" == "true" ]]; then