Skip to content

Commit d2592f0

Browse files
committed
syntax fixed
1 parent ee0010f commit d2592f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/windows-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
# Step 5: Build with CMake presets (same as AppVeyor)
3838
- name: Build with CMake
3939
run: |
40-
if "${{ matrix.configuration }}"=="Debug" cmake --build --preset ninja-multi-debug
41-
if "${{ matrix.configuration }}"=="Release" cmake --build --preset ninja-multi-release
40+
if ("${{ matrix.configuration }}" -eq "Debug") { cmake --build --preset ninja-multi-debug }
41+
if ("${{ matrix.configuration }}" -eq "Release") { cmake --build --preset ninja-multi-release }
4242
4343
# Step 6: Generate Doxygen documentation
4444
- name: Generate Doxygen documentation

0 commit comments

Comments
 (0)