From 76860b54b90c23f4ef461f2150c06b21a66012b9 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Tue, 22 Aug 2023 17:51:22 +0000 Subject: [PATCH] ci: correctly check aio job results (#51464) Correctly check the aio job result to determine if we should deploy. PR Close #51464 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8513beb8d39d4..6977b71756bc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -149,7 +149,7 @@ jobs: aio-deploy: needs: [aio] - if: needs.aio.result == success() && github.event_name == 'push' + if: needs.aio.result == 'success' && github.event_name == 'push' runs-on: labels: ubuntu-latest steps: