Skip to content

Commit cd3d29e

Browse files
committed
Fix CI workflow condition for Windows OS detection
- Updated the condition in the CI workflow configuration to correctly check for Windows OS using `matrix.os` instead of `matrix.config.os`, ensuring proper execution of the MSVC development command.
1 parent fa53f42 commit cd3d29e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

templates/.github/workflows/ci.yml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- uses: @CI_ACTION_CHECKOUT@
39-
- if: ${{ startsWith(matrix.config.os, 'windows') }}
39+
- if: ${{ startsWith(matrix.os, 'windows') }}
4040
uses: @CI_ACTION_MSVC_DEV_CMD@
4141

4242
- name: Configure CMake

0 commit comments

Comments
 (0)