Skip to content

Commit

Permalink
ci: fix debug flag assertion for mkosi image-debug
Browse files Browse the repository at this point in the history
The CI wasn't building debug images, due string/bool mismatch.

Signed-off-by: Magnus Kulke <magnuskulke@microsoft.com>
  • Loading branch information
mkulke committed Jan 13, 2025
1 parent 6e25be3 commit 41f34bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/podvm_mkosi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,12 @@ jobs:
ARCH: ${{ inputs.arch }}

- name: Build mkosi debug image
if: ${{ inputs.debug == 'true' }}
if: ${{ inputs.debug == true }}
working-directory: src/cloud-api-adaptor/podvm-mkosi
run: make image-debug

- name: Build mkosi image
if: ${{ inputs.debug != 'true' }}
if: ${{ inputs.debug != true }}
working-directory: src/cloud-api-adaptor/podvm-mkosi
run: make image

Expand Down

0 comments on commit 41f34bc

Please sign in to comment.