Skip to content

Commit e81329d

Browse files
committedMar 23, 2023
Upgrade workflow
1 parent a484d08 commit e81329d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.github/workflows/cmake_runner.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ jobs:
103103
run: echo ${{ matrix.config.generator }}
104104

105105
- name: Execute generated by VS
106-
if: ${{ matrix.config.generator }} == 'Visual Studio 17 2022'
106+
if: contains(matrix.config.generator, 'Visual')
107107
run: ${{ github.workspace }}\build\bin\${{ matrix.config.build_type }}\hw1.exe
108108

109109
- name: Execute
110-
if: ${{ matrix.config.generator }} != 'Visual Studio 17 2022'
110+
if: !contains(matrix.config.generator, 'Visual')
111111
working-directory: ${{ github.workspace }}/build/bin
112112
run: .\hw1
113113

0 commit comments

Comments
 (0)
Please sign in to comment.