Skip to content

Commit 0bcb1ff

Browse files
committed
Fix conditionals
1 parent 3ed208c commit 0bcb1ff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/overcloud-host-image-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
9090
overcloud-host-image-build-rocky:
9191
name: Build Rocky overcloud host images
92-
if: github.repository == 'stackhpc/stackhpc-kayobe-config' && ${{ inputs.rocky9 }} == 'true'
92+
if: github.repository == 'stackhpc/stackhpc-kayobe-config' && inputs.rocky9
9393
environment: ${{ inputs.runner_env }}
9494
runs-on: ${{ needs.runner-selection.outputs.runner_name_image_build }}
9595
needs:
@@ -353,7 +353,7 @@ jobs:
353353

354354
overcloud-host-image-build-ubuntu:
355355
name: Build Ubuntu overcloud host images
356-
if: github.repository == 'stackhpc/stackhpc-kayobe-config' && ${{ inputs.ubuntu-noble }} == 'true'
356+
if: github.repository == 'stackhpc/stackhpc-kayobe-config' && inputs.ubuntu-noble
357357
environment: ${{ inputs.runner_env }}
358358
runs-on: ${{ needs.runner-selection.outputs.runner_name_image_build }}
359359
needs:
@@ -617,7 +617,7 @@ jobs:
617617

618618
overcloud-host-image-build-rocky-arm64:
619619
name: Build Rocky ARM64 overcloud host images
620-
if: github.repository == 'stackhpc/stackhpc-kayobe-config' && ${{ inputs.rocky9 }} == 'true'
620+
if: github.repository == 'stackhpc/stackhpc-kayobe-config' && inputs.rocky9
621621
environment: ${{ inputs.runner_env }}
622622
runs-on: ${{ needs.runner-selection.outputs.runner_name_image_build }}
623623
needs:
@@ -881,7 +881,7 @@ jobs:
881881

882882
overcloud-host-image-build-ubuntu-arm64:
883883
name: Build Ubuntu ARM64 overcloud host images
884-
if: github.repository == 'stackhpc/stackhpc-kayobe-config' && ${{ inputs.ubuntu-noble }} == 'true'
884+
if: github.repository == 'stackhpc/stackhpc-kayobe-config' && inputs.ubuntu-noble
885885
environment: ${{ inputs.runner_env }}
886886
runs-on: ${{ needs.runner-selection.outputs.runner_name_image_build }}
887887
needs:

0 commit comments

Comments
 (0)