File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ platform :android do
55 lane :deploy do
66 upload_to_play_store (
77 track : 'production' ,
8- aab : '../ app/build/outputs/bundle/release/app-release.aab' ,
8+ aab : 'app/build/outputs/bundle/release/app-release.aab' ,
99 skip_upload_metadata : false ,
1010 skip_upload_images : false ,
1111 skip_upload_screenshots : false ,
1212 release_status : 'completed'
1313 )
1414 end
15- end
15+ end
Original file line number Diff line number Diff line change @@ -37,11 +37,15 @@ To deploy a new version to Google Play:
3737 ``` bash
3838 ./gradlew bundleRelease
3939 ```
40- 3 . Run the deploy lane:
40+ 3 . Run the deploy lane from the project root directory :
4141 ``` bash
4242 fastlane deploy
4343 ```
4444
45+ > ** Note** : The Fastfile is configured to look for the AAB file at ` app/build/outputs/bundle/release/app-release.aab `
46+ > relative to the project root directory. Make sure you run the ` fastlane deploy ` command from the project root, not from
47+ > the fastlane directory.
48+
4549### Automated Deployment
4650
4751The project uses GitHub Actions to automatically build and deploy new releases to Google Play when a tag with the format
@@ -54,4 +58,4 @@ To update the app metadata:
5458
55591 . Edit the files in the ` metadata/android/en-US/ ` directory
56602 . Add screenshots to the ` metadata/android/en-US/images/phoneScreenshots/ ` directory
57- 3 . Run the deploy lane to upload the updated metadata to Google Play
61+ 3 . Run the deploy lane to upload the updated metadata to Google Play
You can’t perform that action at this time.
0 commit comments