From e80e9975ea3ece4da57bb4c51d3cf4e4f2c993a2 Mon Sep 17 00:00:00 2001 From: miampf Date: Fri, 3 May 2024 12:22:03 +0200 Subject: [PATCH] removed unneeded brackets --- .github/workflows/e2e-windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index acf73d9fd..87456c3dc 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -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