Skip to content

Commit 16056aa

Browse files
committed
Fix syntax
1 parent 312b7a6 commit 16056aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848
build-mode: manual
4949

5050
- name: 'Configure CMake'
51-
working-directory: ${{env.GITHUB_WORKSPACE}}
51+
working-directory: ${{ github.workspace }}
5252
run: cmake --preset=x64-Debug
5353

5454
- name: 'Build'
55-
working-directory: ${{env.GITHUB_WORKSPACE}}
55+
working-directory: ${{ github.workspace }}
5656
run: cmake --build out\build\x64-Debug
5757

5858
- name: Perform CodeQL Analysis

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ jobs:
8181
arch: ${{ matrix.arch }}
8282

8383
- name: 'Configure CMake'
84-
working-directory: ${{env.GITHUB_WORKSPACE}}
84+
working-directory: ${{ github.workspace }}
8585
run: cmake --preset=${{ matrix.build_type }}
8686

8787
- name: 'Build'
88-
working-directory: ${{env.GITHUB_WORKSPACE}}
88+
working-directory: ${{ github.workspace }}
8989
run: cmake --build out\build\${{ matrix.build_type }}

0 commit comments

Comments
 (0)