Skip to content

Commit ff21e0c

Browse files
committed
Refactor: download built AAB in deploy jobs
This commit updates the GitHub Actions workflow to download the built AAB file in the `deployRelease`, `deployBeta`, and `deployFirebaseInternal` jobs before running Fastlane. This ensures the correct AAB is used for deployment.
1 parent 82b8fd1 commit ff21e0c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/android.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,12 @@ jobs:
209209
bundle config set path 'vendor/bundle'
210210
bundle install
211211
212+
- name: Download built AAB
213+
uses: actions/download-artifact@v4
214+
with:
215+
name: release-aab
216+
path: app/build/outputs/bundle/release
217+
212218
- run: bundle exec fastlane deployRelease
213219

214220
deploy-beta:
@@ -234,6 +240,12 @@ jobs:
234240
bundle config set path 'vendor/bundle'
235241
bundle install
236242
243+
- name: Download built AAB
244+
uses: actions/download-artifact@v4
245+
with:
246+
name: release-aab
247+
path: app/build/outputs/bundle/release
248+
237249
- run: bundle exec fastlane deployBeta
238250

239251
deploy-firebase-internal:
@@ -259,4 +271,10 @@ jobs:
259271
bundle config set path 'vendor/bundle'
260272
bundle install
261273
274+
- name: Download built AAB
275+
uses: actions/download-artifact@v4
276+
with:
277+
name: release-aab
278+
path: app/build/outputs/bundle/release
279+
262280
- run: bundle exec fastlane deployFirebase --verbose

0 commit comments

Comments
 (0)