File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Unsigned Build (Artifact)
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches :
7+ - main # Замените на master, если у вас основная ветка называется так
8+
9+ jobs :
10+ build :
11+ runs-on : macos-latest
12+
13+ steps :
14+ - name : Checkout repository
15+ uses : actions/checkout@v4
16+
17+ - name : Build Unsigned Archive
18+ run : |
19+ xcodebuild archive \
20+ -scheme "LBox" \
21+ -configuration Release \
22+ -destination 'generic/platform=iOS' \
23+ -archivePath ./build/App.xcarchive \
24+ CODE_SIGN_IDENTITY="" \
25+ CODE_SIGNING_REQUIRED=NO \
26+ CODE_SIGNING_ALLOWED=NO
27+
28+ - name : Create IPA
29+ run : |
30+ mkdir Payload
31+ cp -r ./build/App.xcarchive/Products/Applications/*.app Payload/
32+ zip -r LBox.ipa Payload
33+
34+ - name : Upload Artifact
35+ uses : actions/upload-artifact@v4
36+ with :
37+ name : LBox-IPA # Название архива, который вы скачаете с GitHub
38+ path : LBox.ipa
39+ retention-days : 7 # (Опционально) Сколько дней хранить файл
You can’t perform that action at this time.
0 commit comments