Unsigned Release #2
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: Unsigned Release | |
| on: | |
| workflow_dispatch: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build Unsigned Archive | |
| run: | | |
| xcodebuild archive \ | |
| -scheme "LBox" \ | |
| -configuration Release \ | |
| -destination 'generic/platform=iOS' \ | |
| -archivePath ./build/App.xcarchive \ | |
| CODE_SIGN_IDENTITY="" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=NO | |
| - name: Create IPA | |
| run: | | |
| mkdir Payload | |
| cp -r ./build/App.xcarchive/Products/Applications/*.app Payload/ | |
| zip -r LBox.ipa Payload | |
| - name: Upload Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| name: "Realese" | |
| body: | | |
| ### 📥 Installation | |
| > **Recommendation:** Please install this IPA using **[LiveContainer](https://github.com/khanhduytran0/LiveContainer)**. | |
| _Automated build #${{ github.run_number }}_ | |
| tag_name: build-${{ github.run_number }} | |
| files: LBox.ipa |