Skip to content

Unsigned Release

Unsigned Release #2

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