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.
This commit is contained in:
scawful
2025-09-26 22:42:49 -04:00
parent a3bcf8de2c
commit 575dc55487

View File

@@ -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 }} ^