Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ jobs:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Build
- name: Configure
shell: cmd
run: |
cmake -Bbuild
cmake --build build --parallel
run: cmake -Bbuild
- name: Build Debug
shell: cmd
run: cmake --build build --parallel --config Debug
- name: Build Release
run: cmake --build build --parallel --config Release
- name: Upload build as an Artifact
uses: actions/upload-artifact@v7
with:
Expand Down