feat(ci): сборка unsigned ipa
This commit is contained in:
@@ -41,6 +41,21 @@ jobs:
|
|||||||
- name: Build iOS (no codesign)
|
- name: Build iOS (no codesign)
|
||||||
run: flutter build ios --release --no-codesign
|
run: flutter build ios --release --no-codesign
|
||||||
|
|
||||||
|
- name: Package unsigned IPA
|
||||||
|
run: |
|
||||||
|
mkdir -p dist build/ios/Payload
|
||||||
|
cp -R build/ios/iphoneos/Runner.app build/ios/Payload/
|
||||||
|
(cd build/ios && zip -qr ../../dist/Komet-ios-unsigned.ipa Payload)
|
||||||
|
rm -rf build/ios/Payload
|
||||||
|
|
||||||
|
- name: Upload unsigned iOS artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: komet-ios-unsigned
|
||||||
|
path: dist/Komet-ios-unsigned.ipa
|
||||||
|
if-no-files-found: error
|
||||||
|
retention-days: 30
|
||||||
|
|
||||||
- name: Install ldid
|
- name: Install ldid
|
||||||
run: brew install ldid
|
run: brew install ldid
|
||||||
|
|
||||||
|
|||||||
@@ -180,6 +180,12 @@ jobs:
|
|||||||
run: flutter pub get
|
run: flutter pub get
|
||||||
- name: Build iOS (no codesign)
|
- name: Build iOS (no codesign)
|
||||||
run: flutter build ios --release --no-codesign
|
run: flutter build ios --release --no-codesign
|
||||||
|
- name: Package unsigned IPA
|
||||||
|
run: |
|
||||||
|
mkdir -p dist build/ios/Payload
|
||||||
|
cp -R build/ios/iphoneos/Runner.app build/ios/Payload/
|
||||||
|
(cd build/ios && zip -qr ../../dist/Komet-ios-unsigned.ipa Payload)
|
||||||
|
rm -rf build/ios/Payload
|
||||||
- name: Install ldid
|
- name: Install ldid
|
||||||
run: brew install ldid
|
run: brew install ldid
|
||||||
- name: Pseudo-sign with ldid
|
- name: Pseudo-sign with ldid
|
||||||
|
|||||||
Reference in New Issue
Block a user