From 20d7ae71449a58540b836107b82bdf725aaab49a Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sat, 15 Jun 2024 01:20:57 +0200 Subject: [PATCH] CI: Fix setting ENABLE_WIN32_CONSOLE for MSVC --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 226fc9734..a448f9459 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1267,12 +1267,12 @@ jobs: run: cmake -E make_directory build - name: Set ENABLE_WIN32_CONSOLE (debug) - if: matrix.build_type == 'debug' + if: matrix.buildtype == 'debug' shell: bash run: echo "win32_console=ON" >> $GITHUB_ENV - name: Set ENABLE_WIN32_CONSOLE (release) - if: matrix.build_type == 'release' + if: matrix.buildtype == 'release' shell: bash run: echo "win32_console=OFF" >> $GITHUB_ENV