-
Notifications
You must be signed in to change notification settings - Fork 14
48 lines (39 loc) · 1.2 KB
/
unsigned_release.yml
File metadata and controls
48 lines (39 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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