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'