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 dbe33aa commit bff9504
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- '.nuget/*'
- build/*.cmd
- build/*.json
- build/*.props
- build/*.props
- build/*.ps1
- build/*.targets
- build/*.yml
Expand Down 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 }}
2 changes: 1 addition & 1 deletion .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- '.nuget/*'
- build/*.cmd
- build/*.json
- build/*.props
- build/*.props
- build/*.ps1
- build/*.targets
- build/*.yml
Expand Down

0 comments on commit bff9504

Please sign in to comment.