add windows build step

This commit is contained in:
2024-06-02 07:12:49 +02:00
parent 7c060419f4
commit d8a3fe0d7a

View File

@@ -45,3 +45,20 @@ jobs:
name: todd-mac name: todd-mac
path: build path: build
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: make
run: make
- name: copy to build folder
run: |
mkdir build
cp ./todd.exe build/
- uses: actions/upload-artifact@v4
with:
name: todd-windows
path: build