-
Notifications
You must be signed in to change notification settings - Fork 12
/
codemagic.yaml
128 lines (128 loc) · 3.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
workflows:
deploy_staging_firebase:
name: Deploy Staging Build To Firebase
instance_type: mac_mini_m1
environment:
groups:
- fastlane
xcode: latest
cocoapods: default
firebase_service_account: $FIREBASE_SERVICE_ACCOUNT
cache:
cache_paths:
- $HOME/Library/Caches/CocoaPods
triggering:
events:
- push
branch_patterns:
- pattern: 'develop'
include: true
source: true
scripts:
- name: Install bundle
script: bundle install --path vendor/bundle
- name: Install Pods Dependencies
script: bundle exec pod install
- name: Build and Test
script: bundle exec fastlane buildAndTest
- name: Match Ad-hoc
script: bundle exec fastlane syncAdHocStagingCodeSigning
- name: Build App and Distribute to Firebase
script: bundle exec fastlane buildStagingAndUploadToFirebase
artifacts:
- ./Output/*.ipa
- ./Output/*.dSYM.zip
deploy_production_firebase:
name: Deploy Production Build To Firebase
instance_type: mac_mini_m1
environment:
groups:
- fastlane
xcode: latest
cocoapods: default
cache:
cache_paths:
- $HOME/Library/Caches/CocoaPods
triggering:
events:
- push
branch_patterns:
- pattern: 'release/*'
include: true
source: true
scripts:
- name: Install bundle
script: bundle install --path vendor/bundle
- name: Install Pods Dependencies
script: bundle exec pod install
- name: Build and Test
script: bundle exec fastlane buildAndTest
- name: Match Ad-hoc
script: bundle exec fastlane syncAdHocProductionCodeSigning
- name: Build App and Distribute to Firebase
script: bundle exec fastlane buildProductionAndUploadToFirebase
artifacts:
- ./Output/*.ipa
- ./Output/*.dSYM.zip
deploy_app_store:
name: Deploy Build To App Store
instance_type: mac_mini_m1
environment:
groups:
- fastlane
xcode: latest
cocoapods: default
firebase_service_account: $FIREBASE_SERVICE_ACCOUNT
cache:
cache_paths:
- $HOME/Library/Caches/CocoaPods
triggering:
events:
- push
branch_patterns:
- pattern: 'main'
include: true
source: true
scripts:
- name: Install bundle
script: bundle install --path vendor/bundle
- name: Install Pods Dependencies
script: bundle exec pod install
- name: Build and Test
script: bundle exec fastlane buildAndTest
- name: Match AppStore
script: bundle exec fastlane syncAppStoreCodeSigning
- name: Build App and Distribute to AppStore
script: bundle exec fastlane buildAndUploadToAppStore
artifacts:
- ./Output/*.ipa
- ./Output/*.dSYM.zip
test:
name: Test
instance_type: mac_mini_m1
environment:
groups:
- fastlane
xcode: latest
cocoapods: default
cache:
cache_paths:
- $HOME/Library/Caches/CocoaPods
triggering:
events:
- pull_request
branch_patterns:
- pattern: '*'
include: true
source: true
scripts:
- name: Install bundle
script: bundle install --path vendor/bundle
- name: Install Pods Dependencies
script: bundle exec pod install
- name: Build and Test
script: bundle exec fastlane buildAndTest
- name: Clean Up
script: bundle exec fastlane cleanUpOutput
- name: Danger
script: bundle exec danger