mirror of
https://github.com/edgelesssys/constellation.git
synced 2026-01-21 17:24:38 -05:00
removed unneeded brackets
This commit is contained in:
parent
86b639dff7
commit
e80e9975ea
1 changed files with 2 additions and 1 deletions
3
.github/workflows/e2e-windows.yml
vendored
3
.github/workflows/e2e-windows.yml
vendored
|
|
@ -172,7 +172,8 @@ jobs:
|
|||
.\constellation.exe iam destroy --debug -y
|
||||
|
||||
- name: Clean up after failure
|
||||
if: ${{ (failure() && (steps.terminate-cluster.conclusion == 'failure' || steps.delete-iam.conclusion == 'failure')) || cancelled() }} # run on a cleanup failure or if cancelled
|
||||
# run on a cleanup failure or if cancelled
|
||||
if: (failure() && (steps.terminate-cluster.conclusion == 'failure' || steps.delete-iam.conclusion == 'failure')) || cancelled()
|
||||
shell: pwsh
|
||||
run: |
|
||||
az group delete --name ${{ steps.iam-create.outputs.rgName }}-rg --yes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue