Document the positive submission-verification path (eas build:view Logs URL)

This commit is contained in:
Mohamed Boudra
2026-05-18 10:16:42 +07:00
parent 1b2a28be47
commit 69fc6fe754
2 changed files with 4 additions and 3 deletions

View File

@@ -65,10 +65,11 @@ cd packages/app
# Recent builds
npx eas build:list --limit 10 --non-interactive --json | jq '.[] | {platform, status, appVersion, gitCommitHash}'
# Inspect a build
# Inspect a build (the printed `Logs` URL opens the build's Expo dashboard page,
# which has a Submissions section showing the auto-submit to the Play Store).
npx eas build:view <build-id>
```
Store submission state lives on the Expo dashboard.
The Play Console (Internal testing → Production tracks) is the final confirmation that the binary reached the store.
See [docs/release.md](release.md) for the full mobile-build babysitting flow.

View File

@@ -180,7 +180,7 @@ npx eas build:view <build-id> --json | jq '.logFiles[]'
A build's `gitCommitHash` must match the release tag commit. `status` walks through `NEW``IN_QUEUE``IN_PROGRESS``FINISHED` (or `ERRORED`/`CANCELED`).
Store submissions happen automatically after a FINISHED build — Android via `eas submit`'s submit config and iOS via the Fastlane lane — and their state lives on the Expo dashboard. Heartbeat checks look at `eas build:list` for build state; for store-side submission status, open the Expo dashboard, Play Console, or App Store Connect directly.
Once a build is `FINISHED`, EAS auto-submits it to the store: Android via the `submit` block in `eas.json` (EAS-managed Play Console credentials), iOS via the Fastlane `submit_review` lane (uploads to TestFlight, then submits for App Store review). To confirm the submission landed, run `npx eas build:view <build-id>` and open the `Logs` URL it prints — the build's Expo dashboard page has a Submissions section listing each attempt with its store response. App Store Connect (TestFlight tab → ready for review) and the Play Console (Internal testing / Production tracks) are the final ground truth.
### Babysitting mobile after a release