Skip to content

Commit

Permalink
ci: remove dash from create action (#2617)
Browse files Browse the repository at this point in the history
* remove dash
* fix flags parsing

---------

Signed-off-by: Daniel Weiße <[email protected]>
  • Loading branch information
daniel-weisse authored Nov 20, 2023
1 parent 60921fc commit 807824b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/constellation_create/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 807824b

Please sign in to comment.