From 923503493e9703c1ecaaccd6fae02dbae47af263 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Fri, 15 Aug 2025 20:04:55 +0100 Subject: [PATCH] fix release.yml --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 460cbc1..55ce19a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,11 @@ jobs: # Windows - name: Install build tools (Windows) if: runner.os == 'Windows' - run: choco install winflexbison -y + run: | + choco install winflexbison mingw -y + cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ shell: pwsh + - name: Checkout code uses: actions/checkout@v3 with: @@ -73,7 +76,7 @@ jobs: if: runner.os == 'Windows' run: | conan install . --build=missing - conan build . + conan build . --config Release shell: pwsh - name: Determine if prerelease (Linux/macOS)