From 807824bf79ecc7bdc1c30559601258c4a40d537e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= <66256922+daniel-weisse@users.noreply.github.com> Date: Mon, 20 Nov 2023 15:19:45 +0100 Subject: [PATCH] ci: remove dash from create action (#2617) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * remove dash * fix flags parsing --------- Signed-off-by: Daniel Weiße --- .github/actions/constellation_create/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/constellation_create/action.yml b/.github/actions/constellation_create/action.yml index ffd72a71a..e613709ef 100644 --- a/.github/actions/constellation_create/action.yml +++ b/.github/actions/constellation_create/action.yml @@ -139,11 +139,11 @@ runs: shell: bash run: | # TODO(v2.14): Remove workaround for CLIs not supporting apply command - cmd='apply --skip-phases="init,attestationconfig,certsans,helm,image,k8s"' - if constellation --help | grep -q init; then + cmd='apply --skip-phases=init,attestationconfig,certsans,helm,image,k8s' + if constellation --help | grep -q create; then cmd=create fi - constellation $cmd -y --debug --tf-log=DEBUG - + constellation $cmd -y --debug --tf-log=DEBUG - name: Constellation create (self-managed) if : inputs.selfManagedInfra == 'true'