Skip to content

Commit 4d347eb

Browse files
committed
path
1 parent 6341165 commit 4d347eb

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

fastlane/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

4751
The 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

5559
1. Edit the files in the `metadata/android/en-US/` directory
5660
2. 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

0 commit comments

Comments
 (0)