From 0e2ec77948b1b621e8a100c53a9fff39bcd640e6 Mon Sep 17 00:00:00 2001 From: Sietse Snel Date: Tue, 3 Dec 2024 17:09:17 +0100 Subject: [PATCH] CI: fix integration/API tests for 1.9 RC versions Configure API/integration tests to run on the Yoda 1.9 container images for Yoda 1.9.x RC versions. --- .github/workflows/api-and-integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/api-and-integration-tests.yml b/.github/workflows/api-and-integration-tests.yml index 436be2c6a..55d02ba0e 100644 --- a/.github/workflows/api-and-integration-tests.yml +++ b/.github/workflows/api-and-integration-tests.yml @@ -34,7 +34,7 @@ jobs: # For other branches, we use the Docker setup of the development branch. - name: Determine Yoda repository branch run: | - if [ "${{ steps.extract_branch.outputs.branch }}" = "release-1.9" ]; then + if [ "${{ steps.extract_branch.outputs.branch }}" = "release-1.9" ] || [[ "${{ steps.extract_branch.outputs.branch }}" == rc-1.9.* ]]; then echo "branch=release-1.9" >> $GITHUB_OUTPUT else echo "branch=development" >> $GITHUB_OUTPUT