mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
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:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user