Proper unicode support for Windows, part 2. Clean up unnecessary comp… #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Windows | |
on: [push,pull_request] | |
jobs: | |
build-and-deploy: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
cmake -DCMAKE_BUILD_TYPE=Release -S . -B build | |
cmake --build build | |
- name: GH Release | |
uses: actions/upload-artifact@v4 | |
with: | |
name: WindowsRelease | |
path: build/bin |