update build

This commit is contained in:
Brandyn / Techy
2026-04-06 23:49:39 -05:00
parent dba81d9316
commit 4489401286
2 changed files with 22 additions and 0 deletions

View File

@@ -27,9 +27,20 @@ jobs:
run: |
call Setup.bat
- name: Run GenerateProjectFiles.bat in repo root
shell: cmd
run: |
call RunGenerateProjectfiles.bat
- name: Run winBuild.bat in repo root
shell: cmd
run: |
call winBuild.bat
- name: Cleanup
shell: cmd
run: |
attrib -h -s "%GITHUB_WORKSPACE%\*" /s /d 2>nul
del /f /q /s /a "%GITHUB_WORKSPACE%\*" 2>nul
for /d %%D in ("%GITHUB_WORKSPACE%\*") do rd /s /q "%%D"
90758