mirror of
https://github.com/keycloak/keycloak.git
synced 2026-02-06 07:19:01 -06:00
Fix conditional for sssd (#22069)
This commit is contained in:
committed by
Stian Thorgersen
parent
0052e2cb1e
commit
ebe0d8d451
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -27,7 +27,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
ci: ${{ steps.conditional.outputs.ci }}
|
||||
sssd: ${{ steps.conditional.outputs.sssd }}
|
||||
ci-sssd: ${{ steps.conditional.outputs.ci-sssd }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
@@ -591,7 +591,7 @@ jobs:
|
||||
sssd-unit-tests:
|
||||
name: SSSD
|
||||
runs-on: ubuntu-latest
|
||||
if: needs.conditional.outputs.sssd == 'true'
|
||||
if: needs.conditional.outputs.ci-sssd == 'true'
|
||||
needs:
|
||||
- conditional
|
||||
- build
|
||||
|
||||
Reference in New Issue
Block a user