fix(ci): use fixed bash conditional (#9509)

This is preventing the relevant jobs from running, causing staging
deploys to fail.
This commit is contained in:
Jamil
2025-06-11 07:56:56 -07:00
committed by GitHub
parent 60bdbb39cb
commit 5e146054f5

View File

@@ -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;