grr another changing save file #573
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 macOS | |
on: | |
push: | |
branches: [ main, develop ] | |
workflow_dispatch: | |
jobs: | |
macOS: | |
runs-on: macos-${{matrix.version}} | |
strategy: | |
matrix: | |
version: [12, 13] # macOS 11 does not have a runner available ;_; | |
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 | |
- name: Compile | |
run: haxelib run lime build mac | |
- name: Upload Artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: macOSBuild-${{matrix.version}} | |
path: export/release/macos/bin/* | |
if-no-files-found: error |