-
Notifications
You must be signed in to change notification settings - Fork 4
/
codemagic.yaml
43 lines (42 loc) · 1.12 KB
/
codemagic.yaml
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
workflows:
android-workflow-id:
name: Android Workflow
max_build_duration: 120
instance_type: mac_mini_m1
triggering:
events:
- push
branch_patterns:
- pattern: main
environment:
flutter:
version: 3.10.4
ios_signing:
distribution_type: ad_hoc
bundle_identifier: nd.imagevideo.filters
scripts:
- name: Set up code signing settings on Xcode project
script: |
xcode-project use-profiles
- name: Get Flutter packages
script: |
flutter packages pub get
- name: Install pods
script: |
find . -name "Podfile" -execdir pod install \;
- name: Flutter build ipa
script: |
flutter build ipa --release \
--build-name=1.0.0 \
--export-options-plist=/Users/builder/export_options.plist
artifacts:
- build/ios/ipa/*.ipa
- /tmp/xcodebuild_logs/*.log
- flutter_drive.log
ios-workflow-id:
name: iOS Workflow
max_build_duration: 120
instance_type: mac_mini_m1
environment:
flutter:
version: 3.10.4