diff --git a/.github/workflows/budibase_ci.yml b/.github/workflows/budibase_ci.yml index 2ebf9a93a3..f2e7f2eda9 100644 --- a/.github/workflows/budibase_ci.yml +++ b/.github/workflows/budibase_ci.yml @@ -184,10 +184,10 @@ jobs: cd packages/pro pro_commit=$(git rev-parse HEAD) - branch=${{ github.base_ref || github.ref_name }} + branch="${{ github.base_ref || github.ref_name }}" echo "Running on branch `$branch` (base_ref=${{ github.base_ref }}, ref_name=${{ github.head_ref }})" - if [[ "$branch" == "master" ]]; then + if [[ $branch == "master" ]]; then base_commit=$(git rev-parse origin/master) else base_commit=$(git rev-parse origin/develop)