From 575dc55487f413c242a185faa5452ada05b97663 Mon Sep 17 00:00:00 2001 From: scawful Date: Fri, 26 Sep 2025 22:42:49 -0400 Subject: [PATCH] Update Windows build configuration in release workflow - Set the shell to cmd for the Windows CMake configuration step, ensuring compatibility with the Windows environment. - This change aims to streamline the build process on Windows by explicitly defining the shell used for running commands. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d729ffe..7ab451e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -235,6 +235,7 @@ jobs: - name: Configure CMake (Windows) if: runner.os == 'Windows' + shell: cmd run: | cmake -B build ^ -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} ^