starting to work on note shit #126
This file contains 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: Build | |
on: [push] | |
jobs: | |
buildWindows: # windows action build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: 4.2.5 | |
- name: Set up Haxelib dependencies | |
run: haxe -cp cmd -D analyzer-optimize --run Main | |
- name: Update submodules | |
run: git submodule update --init --recursive | |
- name: Build crash handler | |
run: | | |
cd crash | |
haxelib run lime build windows | |
- name: Build project | |
run: | | |
cd D:/a/Proto-Engine-FNF/Proto-Engine-FNF | |
haxelib run lime build windows | |
- name: Uploading artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: WindowsBuild | |
path: export/release/windows/bin |