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 17, 2025
1 parent d07938d commit 04fedf9
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 @@ -153,12 +153,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 04fedf9

Please sign in to comment.