Skip to content

Commit

Permalink
build in Release mode in Windows and MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
iTrooz committed Dec 27, 2023
1 parent 834024d commit d6257a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build project
run: |
cmake -B build
cmake --build build -j 4
cmake --build build -DCMAKE_BUILD_TYPE=Release -j 4
- name: Upload binary
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Build project
run: |
cmake -B build -G "Ninja"
cmake --build build -j 4
cmake --build build -DCMAKE_BUILD_TYPE=Release -j 4
- name: Upload binary
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit d6257a3

Please sign in to comment.