Skip to content

Commit

Permalink
fix: nmake on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Feb 16, 2024
1 parent dd29a0d commit bc4706d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ jobs:
run: git clone -b ext https://github.com/SpikeHD/webui.git

- name: Build WebUI
if: matrix.platform != 'windows-latest'
run: |
cd webui
make
cd ..
- name: Build WebUI
if: matrix.platform == 'windows-latest'
run: |
cd webui
nmake
Expand Down

0 comments on commit bc4706d

Please sign in to comment.