Skip to content

Commit

Permalink
Merge pull request #861 from kravciak/checkoutref
Browse files Browse the repository at this point in the history
Run tests from maintenance branch on old rancher
  • Loading branch information
jordojordo authored Aug 23, 2024
2 parents 0b70b9c + 5e64226 commit cf62a2a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,17 @@ jobs:
runs-on: self-hosted
steps:
# ==================================================================================================
# Check out code and install requirements
# Check out code
# Use local kuberlr to avoid version skew

# Test from maintenance branch for Rancher < 2.9
- name: Find checkout branch ref
id: set-ref
run: echo "ref=$( [[ ${{matrix.rancher}} == 2.[78]* ]] && echo 'release-1.6' || echo '')" | tee -a $GITHUB_OUTPUT

- uses: actions/checkout@v4
with:
ref: ${{ steps.set-ref.outputs.ref }}

# ==================================================================================================
# Set up parameters and ENV
Expand Down

0 comments on commit cf62a2a

Please sign in to comment.