This repository was archived by the owner on Dec 19, 2025. It is now read-only.
im stupid :3 #7
This file contains hidden or 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 Unsigned iOS App with Lime | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build-ios: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Haxe | |
| uses: krdlab/setup-haxe@master | |
| with: | |
| haxe-version: 4.3.6 | |
| - name: Install Lime | |
| run: | | |
| haxelib install lime | |
| haxelib run lime setup | |
| - run: bash ./ci/setup-haxe.sh | |
| - name: Build iOS App (Release, No Sign) | |
| run: haxelib run lime build ios -release -nosign -D officialBuild -D NotDeveloper | |
| - name: Package .app into unsigned .ipa | |
| run: | | |
| cd export/ios/build/Release-iphoneos | |
| mkdir -p Payload | |
| cp -r YourAppName.app Payload/ | |
| zip -r YourAppName.ipa Payload | |
| shell: bash | |
| - name: Upload unsigned .ipa artifact | |
| uses: actions/upload-artifact@v4.6.2 | |
| with: | |
| name: ios-unsigned-ipa | |
| path: export/ios/build/Release-iphoneos/YourAppName.ipa |