Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
walbourn committed Jul 26, 2024
1 parent 3af055a commit 8f7529d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:
build-mode: manual

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

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

- name: Perform CodeQL Analysis
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ jobs:
arch: ${{ matrix.arch }}

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

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

0 comments on commit 8f7529d

Please sign in to comment.