Skip to content

Commit

Permalink
CI: fix integration/API tests for 1.9 RC versions
Browse files Browse the repository at this point in the history
Configure API/integration tests to run on the Yoda 1.9 container
images for Yoda 1.9.x RC versions.
  • Loading branch information
stsnel committed Dec 3, 2024
1 parent f5deb3e commit 0e2ec77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/api-and-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0e2ec77

Please sign in to comment.