Skip to content

Commit

Permalink
fixup! Enable Github workflow for basic deployment role testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Guterres Jeffman committed Dec 30, 2024
1 parent 433fbe6 commit fe9ddd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
test_ipaserver:
name: Test ipaserver role
needs: [check_roles]
if: ${{ needs.check_roles.outputs.ipaserver || "false" }} == "true"
if: ${{ needs.check_roles.outputs.ipaserver }} == "true"
runs-on: ubuntu-latest
steps:
- name: Test ipaserver
Expand All @@ -42,7 +42,7 @@ jobs:
test_ipareplica:
name: Test ipareplica role
needs: [check_roles]
if: ${{ needs.check_roles.outputs.ipareplica || "false" }} == "true"
if: ${{ needs.check_roles.outputs.ipareplica }} == "true"
runs-on: ubuntu-latest
steps:
- name: Test ipareplica
Expand Down

0 comments on commit fe9ddd5

Please sign in to comment.