From 5e146054f5d95d9048fee13cf47d6291ceb9c17f Mon Sep 17 00:00:00 2001 From: Jamil Date: Wed, 11 Jun 2025 07:56:56 -0700 Subject: [PATCH] fix(ci): use fixed bash conditional (#9509) This is preventing the relevant jobs from running, causing staging deploys to fail. --- .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 e7d018c99..5e2a184d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: fi # For main branch runs, run all jobs - if [ "${{ github.event_name }}" = "push" && "${{ github.ref_name }}" = "main" ]; then + if [ "${{ github.event_name }}" = "push" ] && [ "${{ github.ref_name }}" = "main" ]; then echo "jobs_to_run=$jobs" >> $GITHUB_OUTPUT exit 0;