Added compression and switched to recursive binary serialisation for asset packing #461
Workflow file for this run
This file contains hidden or 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: Windows | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: pwsh | |
| steps: | |
| - name: perform checkout | |
| uses: actions/checkout@v4 | |
| - name: perform setup | |
| run: ./scripts/setup.ps1 | |
| - name: build all targets | |
| run: mingw32-make | |
| - name: run tests | |
| run: | | |
| cd ./bin/tests/build | |
| ./app.exe | |
| - name: compress output | |
| run: Compress-Archive -Path ./output/* -DestinationPath ./windows.zip | |
| - name: upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: windows_output | |
| path: ./windows.zip |