Fix checkout of Keycloak server for release branches (#4453)
This commit is contained in:
parent
7b2e0c3830
commit
7a014f0df8
1 changed files with 2 additions and 2 deletions
4
.github/workflows/cypress.yml
vendored
4
.github/workflows/cypress.yml
vendored
|
@ -32,8 +32,8 @@ jobs:
|
|||
- name: Check out Keycloak Server
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ${{ inputs.keycloakRepo || (contains(github.ref, 'release/') && github.ref || 'keycloak/keycloak') }}
|
||||
ref: ${{ inputs.keycloakBranch || 'main' }}
|
||||
repository: ${{ inputs.keycloakRepo || 'keycloak/keycloak' }}
|
||||
ref: ${{ inputs.keycloakBranch || (contains(github.ref, 'release/') && github.ref || 'main') }}
|
||||
path: keycloak-repo
|
||||
|
||||
- name: Set up Java
|
||||
|
|
Loading…
Reference in a new issue