build a release build for linux as well

This commit is contained in:
CPunch 2023-09-04 20:15:15 -05:00 committed by cpunch
parent 89be01aaf6
commit ffff01e9d1
1 changed files with 2 additions and 2 deletions

View File

@ -19,9 +19,9 @@ jobs:
with:
submodules: recursive
- name: CMake
run: cmake -B build
run: cmake -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build
run: cmake --build build --config Release
- name: Upload build artifact
uses: actions/upload-artifact@v2
with: