From 8adb043b4f0ab4d3d5bd3e1ff0823f01cba1e459 Mon Sep 17 00:00:00 2001 From: Rory Abraham <47436092+roryabraham@users.noreply.github.com> Date: Wed, 8 Nov 2023 08:44:39 -0800 Subject: [PATCH] Use not cancelled alone instead of always Co-authored-by: Carlos Martins --- .github/workflows/platformDeploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/platformDeploy.yml b/.github/workflows/platformDeploy.yml index 9346b1ff76cc..d494ea0d008b 100644 --- a/.github/workflows/platformDeploy.yml +++ b/.github/workflows/platformDeploy.yml @@ -424,7 +424,7 @@ jobs: postGithubComment: name: Post a GitHub comment when platforms are done building and deploying runs-on: ubuntu-latest - if: ${{ always() && !cancelled() }} + if: ${{ !cancelled() }} needs: [android, desktop, iOS, web] steps: - name: Checkout