Skip to content
This repository was archived by the owner on Oct 18, 2025. It is now read-only.

removed overrideable (useless) shit #148

removed overrideable (useless) shit

removed overrideable (useless) shit #148

name: Windows Build
on:
push:
workflow_dispatch:
jobs:
build:
name: Windows Build
permissions: write-all
runs-on: windows-latest
steps:
- name: Pull the New Commit
uses: actions/checkout@v2
- name: Cache haxelib
uses: actions/cache@v4
with:
path: |
C:\Users\runneradmin\.haxelib
C:\HaxeToolkit\haxe\lib
key: haxelib-${{ hashFiles('setup/install-haxelibs.bat') }}
restore-keys: |
haxelib-
- name: Setup Haxe
uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.7
- name: Restore Build Cache
uses: actions/cache@v3
with:
key: cache-build-windows
path: |
.haxelib/
export/release/windows/haxe/
export/release/windows/obj/
restore-keys: cache-build-windows
- name: Install/Updating Libraries
run: setup/install-haxelibs.bat
- name: Build for Windows
run: haxelib run lime build windows
- name: Upload Game
uses: actions/upload-artifact@v4
with:
name: ALE Engine - Windows Build
path: export/release/windows/bin
- name: Uploading New Cache
uses: actions/cache@v3
with:
key: cache-build-windows
path: |
.haxelib/
export/release/windows/haxe/
export/release/windows/obj/
restore-keys: cache-build-windows