Add KFSFileManager and FileManagerView for file management functionality #3
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 IPA | |
| on: | |
| push: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-ipa: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build IPA (Release) | |
| env: | |
| LARA_LDID_SIGN: "0" | |
| run: | | |
| bash scripts/build_ipa.sh | |
| - name: Upload to "latest" release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: latest | |
| files: dist/lara.ipa | |
| overwrite: true |