Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
mattalvarado committed Nov 7, 2024
1 parent 41dd3e1 commit c172deb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: build-release
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
run: cmake --build ${{github.workspace}}/build --config Release --target install -- /m:10
run: |
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build --config Release --target install -- /m:10
- id: build-debug
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug
run: cmake --build ${{github.workspace}}/build --config Debug --target install -- /m:10
run: |
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug
cmake --build ${{github.workspace}}/build --config Debug --target install -- /m:10

0 comments on commit c172deb

Please sign in to comment.