From f7369efb33516a0689ce69e7424f09adddfcb4cb Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Fri, 14 Jun 2024 15:34:24 +0200 Subject: [PATCH] Fix the workflow? --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eddf0c793c..fa864e535f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -481,7 +481,7 @@ jobs: env: # If this is a pull request to a release branch, use that branch as default branch for sytest, else use develop # This works because the release script always create a branch on the sytest repo with the same name as the release branch - SYTEST_DEFAULT_BRANCH: ${{ startswith(github.head_ref, 'release-') && github.head_ref || 'develop' }} + SYTEST_DEFAULT_BRANCH: ${{ startsWith(github.head_ref, 'release-') && github.head_ref || 'develop' }} SYTEST_BRANCH: ${{ github.head_ref }} POSTGRES: ${{ matrix.job.postgres && 1}} MULTI_POSTGRES: ${{ (matrix.job.postgres == 'multi-postgres') || '' }}