We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0010f commit d2592f0Copy full SHA for d2592f0
.github/workflows/windows-build.yml
@@ -37,8 +37,8 @@ jobs:
37
# Step 5: Build with CMake presets (same as AppVeyor)
38
- name: Build with CMake
39
run: |
40
- if "${{ matrix.configuration }}"=="Debug" cmake --build --preset ninja-multi-debug
41
- if "${{ matrix.configuration }}"=="Release" cmake --build --preset ninja-multi-release
+ if ("${{ matrix.configuration }}" -eq "Debug") { cmake --build --preset ninja-multi-debug }
+ if ("${{ matrix.configuration }}" -eq "Release") { cmake --build --preset ninja-multi-release }
42
43
# Step 6: Generate Doxygen documentation
44
- name: Generate Doxygen documentation
0 commit comments