From a4cfa94f6d6d71ae7fb1f966ce2be480ee81f4b6 Mon Sep 17 00:00:00 2001 From: miampf Date: Thu, 2 May 2024 13:34:43 +0200 Subject: [PATCH] added missing parentheses --- .github/workflows/e2e-windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index 3f9b9f427..2b8427cb8 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -173,7 +173,7 @@ 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 + if: ${{ (failure() && (steps.terminate-cluster.conclusion == 'failure' || steps.delete-iam.conclusion == 'failure')) || cancelled() }} # run on a cleanup failure or if cancelled shell: pwsh run: | az rg delete --name ${{ steps.iam-create.outputs.rgName }}-rg --yes