Update CharSelectGF.hx #357
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 Game for Windows (x86) | |
on: | |
push: | |
branches: [ main, develop ] | |
workflow_dispatch: | |
jobs: | |
Windows: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
submodules: true | |
- name: Setup Haxe | |
uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: 4.3.6 | |
- name: Install Libraries | |
run: | | |
haxelib install hmm --quiet | |
haxelib run hmm install --quiet | |
haxelib run lime rebuild hxcpp | |
haxelib run lime rebuild cpp | |
- name: Compile | |
run: haxelib run lime build windows -32 -release -D 32bits | |
- name: Upload Artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: windowsBuild | |
path: export/release/windows/bin | |
if-no-files-found: error |