Skip to content

AloneMod

AloneMod #2

Workflow file for this run

name: AloneMod
on: [workflow_dispatch]
jobs:
build-windows-amd64:
runs-on: windows-2022
steps:
# Step 1: Checkout the code
- uses: actions/checkout@v2
# Step 2: Build the project
- name: Build windows-amd64
run: |
git submodule init && git submodule update
./waf.bat configure -T release --prefix=AloneMod --build-games=AloneMod --disable-warns
./waf.bat build -p -v
./waf.bat install
# Step 3: Upload build artifacts
- name: Upload Executables
uses: actions/upload-artifact@v3
with:
name: AloneMod_build
path: |
AloneMod/*