Skip to content

Added compression and switched to recursive binary serialisation for asset packing #461

Added compression and switched to recursive binary serialisation for asset packing

Added compression and switched to recursive binary serialisation for asset packing #461

Workflow file for this run

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