@@ -50,13 +50,13 @@ jobs:
50
50
./gradlew assembleDebug
51
51
52
52
- name : Upload debug APK and metadata to Artifacts
53
- uses : actions/upload-artifact@v3
53
+ uses : actions/upload-artifact@v4
54
54
with :
55
55
name : app-debug.apk
56
56
path : ./android/app/build/outputs/apk/debug/app-debug.apk
57
57
58
58
- name : Upload debug metadata to Artifacts
59
- uses : actions/upload-artifact@v3
59
+ uses : actions/upload-artifact@v4
60
60
with :
61
61
name : output-metadata.json
62
62
path : ./android/app/build/outputs/apk/debug/output-metadata.json
@@ -68,12 +68,12 @@ jobs:
68
68
- uses : actions/checkout@v4
69
69
70
70
- name : Download debug APK
71
- uses : actions/download-artifact@v3
71
+ uses : actions/download-artifact@v4
72
72
with :
73
73
name : app-debug.apk
74
74
75
75
- name : Download debug metadata
76
- uses : actions/download-artifact@v3
76
+ uses : actions/download-artifact@v4
77
77
with :
78
78
name : output-metadata.json
79
79
@@ -137,7 +137,7 @@ jobs:
137
137
keyPassword : ${{ secrets.ANDROID_KEY_PASSWORD }}
138
138
139
139
- name : Upload release AAB to Artifacts
140
- uses : actions/upload-artifact@v3
140
+ uses : actions/upload-artifact@v4
141
141
with :
142
142
name : app-release.aab
143
143
path : ./android/app/build/outputs/bundle/release/app-release.aab
@@ -151,7 +151,7 @@ jobs:
151
151
- uses : actions/checkout@v4
152
152
153
153
- name : Download release AAB
154
- uses : actions/download-artifact@v3
154
+ uses : actions/download-artifact@v4
155
155
with :
156
156
name : app-release.aab
157
157
@@ -234,7 +234,7 @@ jobs:
234
234
xcodebuild -exportArchive -archivePath build/App.xcarchive -exportPath build -exportOptionsPlist ios/App/ExportOptions.plist -allowProvisioningUpdates
235
235
236
236
- name : Upload IPA
237
- uses : actions/upload-artifact@v3
237
+ uses : actions/upload-artifact@v4
238
238
with :
239
239
name : App.ipa
240
240
path : build/App.ipa
@@ -244,7 +244,7 @@ jobs:
244
244
echo ${{ steps.current-time.outputs.formattedTime }} > build/ios-build-number.txt
245
245
246
246
- name : Upload iOS build number
247
- uses : actions/upload-artifact@v3
247
+ uses : actions/upload-artifact@v4
248
248
with :
249
249
name : ios-build-number.txt
250
250
path : build/ios-build-number.txt
@@ -259,15 +259,10 @@ jobs:
259
259
- uses : actions/checkout@v4
260
260
261
261
- name : Download IPA
262
- uses : actions/download-artifact@v3
262
+ uses : actions/download-artifact@v4
263
263
with :
264
264
name : App.ipa
265
265
266
- - name : Download iOS build number
267
- uses : actions/download-artifact@v3
268
- with :
269
- name : ios-build-number.txt
270
-
271
266
- name : Upload IPA to App Store (Testflight)
272
267
uses : Apple-Actions/upload-testflight-build@master
273
268
with :
@@ -276,20 +271,14 @@ jobs:
276
271
api-key-id : ${{ secrets.APPSTORE_KEY_ID }}
277
272
api-private-key : ${{ secrets.APPSTORE_PRIVATE_KEY }}
278
273
279
- - name : Upload iOS build number as artifact
280
- uses : actions/upload-artifact@v2
281
- with :
282
- name : ios-build-number.txt
283
- path : build/ios-build-number.txt
284
-
285
274
get-ios-build-number :
286
275
runs-on : ubuntu-latest
287
276
needs : deploy-app-store
288
277
steps :
289
278
- uses : actions/checkout@v4
290
279
291
280
- name : Download iOS build number
292
- uses : actions/download-artifact@v2
281
+ uses : actions/download-artifact@v4
293
282
with :
294
283
name : ios-build-number.txt
295
284
0 commit comments