Skip to content

new milky pixel icon #335

new milky pixel icon

new milky pixel icon #335

name: Build Game for iOS
on:
push:
branches: [ main, develop ]
workflow_dispatch:
jobs:
iOS:
runs-on: macos-14
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 ios -nosign
- name: Make .ipa
run: |
cd export/*/ios/build/*-iphoneos
mkdir Payload
mv *.app Payload
zip -r Funkin.ipa Payload
- name: Upload Artifact
uses: actions/upload-artifact@main
with:
name: iOSBuild
path: export/release/ios/build/Release-iphoneos/*.ipa
if-no-files-found: error