@@ -3,23 +3,13 @@ name: Production Deployment
3
3
on :
4
4
workflow_dispatch :
5
5
inputs :
6
- deployment_type :
7
- description : " Deployment type (build/update)"
6
+ force_native_build :
7
+ description : " Force native build"
8
+ type : boolean
9
+ default : false
8
10
required : true
9
- type : choice
10
- options :
11
- - auto
12
- - build
13
- - update
14
-
15
- # We need to ensure only one workflow runs at a time and wait for any in-progress workflows to complete.
16
- # This is critical because:
17
- # 1. If we merge multiple PRs to main (preview env), each triggers a preview deployment that may increment versions
18
- # 2. When we then deploy to production, we must wait for all deployments to finish
19
- # 3. Otherwise, we might miss version increments and deploy the wrong build
20
- # Example: PR1 with native changes merged to main -> PR1's preview deploy starts incrementing version ->
21
- # If prod deploy starts before PR1's preview deploy finishes, we'll merge main to production with old version ->
22
- # This causes prod to do EAS update when it should have done EAS build with version increment
11
+
12
+ # Ensure only one workflow runs at a time
23
13
concurrency :
24
14
group : " deployment"
25
15
cancel-in-progress : false
@@ -29,39 +19,33 @@ permissions:
29
19
id-token : write
30
20
31
21
jobs :
32
- check-deployment-type :
22
+ check-changes :
33
23
runs-on : ubuntu-latest
34
24
outputs :
35
- versions_match : ${{ steps.version-compare.outputs.versions_match }}
36
- deployment_type : ${{ steps.determine-deployment.outputs.type }}
25
+ has_native_changes : ${{ steps.check-changes.outputs.has_native_changes }}
37
26
38
27
steps :
39
- # Verify that the required Expo token is available
40
- - name : Check for EXPO_TOKEN
41
- run : |
42
- if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then
43
- echo "You must provide an EXPO_TOKEN secret"
44
- exit 1
45
- fi
46
-
47
- # Get the code from the repository
48
28
- name : Checkout repository
49
29
uses : actions/checkout@v4
50
30
with :
51
- fetch-depth : 0
31
+ fetch-depth : 0 # Need full history to compare branches
52
32
token : ${{ secrets.PAT_GITHUB }}
53
33
54
- # Check if the versions in main and production branches match
55
- - name : Compare versions with main
56
- id : version-compare
34
+ - name : Check for native changes
35
+ id : check-changes
57
36
run : |
58
- git fetch origin main
59
- MAIN_VERSION=$(git show origin/main:package.json | jq -r .version)
60
- PROD_VERSION=$(jq -r .version package.json)
61
- if [ "$MAIN_VERSION" != "$PROD_VERSION" ]; then
62
- echo "versions_match=false" >> $GITHUB_OUTPUT
37
+ if [[ "${{ github.event.inputs.force_native_build }}" == "true" ]]; then
38
+ echo "has_native_changes=true" >> $GITHUB_OUTPUT
63
39
else
64
- echo "versions_match=true" >> $GITHUB_OUTPUT
40
+ # Get the merge base between main and production
41
+ MERGE_BASE=$(git merge-base origin/main origin/production)
42
+
43
+ # Check for native changes between merge base and main
44
+ if git diff --name-only $MERGE_BASE origin/main | grep -E "package.json|app.config.ts|patches/|google-services/|yarn.lock|eas.json"; then
45
+ echo "has_native_changes=true" >> $GITHUB_OUTPUT
46
+ else
47
+ echo "has_native_changes=false" >> $GITHUB_OUTPUT
48
+ fi
65
49
fi
66
50
67
51
- name : Merge main into production
@@ -73,29 +57,17 @@ jobs:
73
57
git merge origin/main -m "feat: Merge main into production for deployment"
74
58
git push origin production
75
59
76
- - name : Determine deployment type
77
- id : determine-deployment
78
- run : |
79
- if [ "${{ inputs.deployment_type }}" = "auto" ]; then
80
- if [ "${{ steps.version-compare.outputs.versions_match }}" = "true" ]; then
81
- echo "type=update" >> $GITHUB_OUTPUT
82
- else
83
- echo "type=build" >> $GITHUB_OUTPUT
84
- fi
85
- else
86
- echo "type=${{ inputs.deployment_type }}" >> $GITHUB_OUTPUT
87
- fi
88
-
89
60
ios-build :
90
- needs : check-deployment-type
91
- if : needs.check-deployment-type .outputs.deployment_type == 'build '
61
+ needs : [ check-changes]
62
+ if : needs.check-changes .outputs.has_native_changes == 'true '
92
63
runs-on : ubuntu-latest
93
64
94
65
steps :
95
66
- name : Checkout repository
96
67
uses : actions/checkout@v4
97
68
with :
98
69
token : ${{ secrets.PAT_GITHUB }}
70
+ ref : production
99
71
100
72
- name : Setup node
101
73
uses : actions/setup-node@v4
@@ -117,21 +89,27 @@ jobs:
117
89
token : ${{ secrets.EXPO_TOKEN }}
118
90
packager : yarn
119
91
eas-cache : true
120
- patch-watchers : true # Prevents ENOSPC errors on Ubuntu runners
92
+ patch-watchers : true
121
93
122
94
- name : Build iOS production
123
- run : eas build --platform ios --profile production --non-interactive --auto-submit
95
+ run : |
96
+ eas build --platform ios --profile production --non-interactive --auto-submit --environment=production
97
+
98
+ - name : Resolve Sentry Issues
99
+ run : |
100
+ eas env:exec --environment production 'sentry-cli issues resolve --all --project convos-react-native --org convos'
124
101
125
102
android-build :
126
- needs : check-deployment-type
127
- if : needs.check-deployment-type .outputs.deployment_type == 'build '
103
+ needs : [ check-changes]
104
+ if : needs.check-changes .outputs.has_native_changes == 'true '
128
105
runs-on : ubuntu-latest
129
106
130
107
steps :
131
108
- name : Checkout repository
132
109
uses : actions/checkout@v4
133
110
with :
134
111
token : ${{ secrets.PAT_GITHUB }}
112
+ ref : production
135
113
136
114
- name : Setup node
137
115
uses : actions/setup-node@v4
@@ -153,22 +131,27 @@ jobs:
153
131
token : ${{ secrets.EXPO_TOKEN }}
154
132
packager : yarn
155
133
eas-cache : true
156
- patch-watchers : true # Prevents ENOSPC errors on Ubuntu runners
134
+ patch-watchers : true
157
135
158
136
- name : Build Android production
159
137
run : |
160
- eas build --platform android --profile production --non-interactive --auto-submit
138
+ eas build --platform android --profile production --non-interactive --auto-submit --environment=production
139
+
140
+ - name : Resolve Sentry Issues
141
+ run : |
142
+ eas env:exec --environment production 'sentry-cli issues resolve --all --project convos-react-native --org convos'
161
143
162
144
ota-update :
163
- needs : check-deployment-type
164
- if : needs.check-deployment-type .outputs.deployment_type == 'update '
145
+ needs : [ check-changes]
146
+ if : needs.check-changes .outputs.has_native_changes == 'false '
165
147
runs-on : ubuntu-latest
166
148
167
149
steps :
168
150
- name : Checkout repository
169
151
uses : actions/checkout@v4
170
152
with :
171
153
token : ${{ secrets.PAT_GITHUB }}
154
+ ref : production
172
155
173
156
- name : Setup node
174
157
uses : actions/setup-node@v4
@@ -190,36 +173,16 @@ jobs:
190
173
token : ${{ secrets.EXPO_TOKEN }}
191
174
packager : yarn
192
175
eas-cache : true
193
- patch-watchers : true # Prevents ENOSPC errors on Ubuntu runners
176
+ patch-watchers : true
194
177
195
178
- name : Run EAS Update
196
179
run : |
197
- eas update --channel=production --message "Github action production deployment" --non-interactive
180
+ eas update --channel=production --message "Production deployment" --non-interactive --environment=production
198
181
199
- - name : Upload source maps
182
+ - name : Upload Sourcemaps to Sentry
200
183
run : |
201
- export SENTRY_AUTH_TOKEN=$(eas env:get --variable-name=SENTRY_AUTH_TOKEN --variable-environment=production | tr -d ' ' | cut -d'=' -f2)
202
- npx sentry-expo-upload-sourcemaps dist
203
-
204
- finalize-deployment :
205
- needs : [check-deployment-type, ios-build, android-build, ota-update]
206
- runs-on : ubuntu-latest
207
- if : always()
184
+ eas env:exec --environment production 'npx sentry-expo-upload-sourcemaps dist'
208
185
209
- steps :
210
- - name : Checkout repository
211
- uses : actions/checkout@v4
212
- with :
213
- token : ${{ secrets.PAT_GITHUB }}
214
-
215
- - name : Configure Git
186
+ - name : Resolve Sentry Issues
216
187
run : |
217
- git config --global user.email "github-actions[bot]@users.noreply.github.com"
218
- git config --global user.name "github-actions[bot]"
219
-
220
- - name : Finalize merge
221
- run : |
222
- echo "Deployment successful, finalizing merge..."
223
- git fetch origin main
224
- git merge origin/main -m "feat: Production deployment"
225
- git push origin production
188
+ eas env:exec --environment production 'sentry-cli issues resolve --all --project convos-react-native --org convos'
0 commit comments