From 41f34bce951e499ab6240161cd8be31b11d3a4e6 Mon Sep 17 00:00:00 2001 From: Magnus Kulke Date: Thu, 9 Jan 2025 09:25:51 +0100 Subject: [PATCH] ci: fix debug flag assertion for mkosi image-debug The CI wasn't building debug images, due string/bool mismatch. Signed-off-by: Magnus Kulke --- .github/workflows/podvm_mkosi.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/podvm_mkosi.yaml b/.github/workflows/podvm_mkosi.yaml index 32ff369c9e..a6173c09c1 100644 --- a/.github/workflows/podvm_mkosi.yaml +++ b/.github/workflows/podvm_mkosi.yaml @@ -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