Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Official Expo AI agent skill for deploying Expo apps to App Store and Google Play.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: expo-deployment3description: Deploy Expo apps to production with EAS — build and submit to the iOS App Store, Google Play Store, and TestFlight, configure eas.json build and submit profiles, manage app versions and build numbers, publish App Store metadata and ASO, and deploy web bundles and API routes via EAS Hosting. Use whenever the user is preparing a production build, running eas build or eas submit, shipping to TestFlight, releasing or rolling out to the app stores, bumping version or build numbers, or setting up store listing metadata for an Expo app.4version: 1.0.05license: MIT6---78# Deployment910This skill covers deploying Expo applications across all platforms using EAS (Expo Application Services).1112## References1314Consult these resources as needed:1516- ./references/workflows.md -- CI/CD workflows for automated deployments and PR previews17- ./references/testflight.md -- Submitting iOS builds to TestFlight for beta testing18- ./references/app-store-metadata.md -- Managing App Store metadata and ASO optimization19- ./references/play-store.md -- Submitting Android builds to Google Play Store20- ./references/ios-app-store.md -- iOS App Store submission and review process2122## Quick Start2324### Install EAS CLI2526```bash27npm install -g eas-cli28eas login29```3031### Initialize EAS3233```bash34npx eas-cli@latest init35```3637This creates `eas.json` with build profiles.3839## Build Commands4041### Production Builds4243```bash44# iOS App Store build45npx eas-cli@latest build -p ios --profile production4647# Android Play Store build48npx eas-cli@latest build -p android --profile production4950# Both platforms51npx eas-cli@latest build --profile production52```5354### Submit to Stores5556```bash57# iOS: Build and submit to App Store Connect58npx eas-cli@latest build -p ios --profile production --submit5960# Android: Build and submit to Play Store61npx eas-cli@latest build -p android --profile production --submit6263# Shortcut for iOS TestFlight64npx testflight65```6667## Web Deployment6869Deploy web apps using EAS Hosting:7071```bash72# Deploy to production73npx expo export -p web74npx eas-cli@latest deploy --prod7576# Deploy PR preview77npx eas-cli@latest deploy78```7980Expo Router API routes deploy together with the web bundle on EAS Hosting — `eas deploy` ships both. To author or configure the API routes themselves, use the `expo-api-routes` skill.8182## EAS Configuration8384Standard `eas.json` for production deployments:8586```json87{88"cli": {89"version": ">= 16.0.1",90"appVersionSource": "remote"91},92"build": {93"production": {94"autoIncrement": true,95"ios": {96"resourceClass": "m-medium"97}98},99"development": {100"developmentClient": true,101"distribution": "internal"102}103},104"submit": {105"production": {106"ios": {107"appleId": "[email protected]",108"ascAppId": "1234567890"109},110"android": {111"serviceAccountKeyPath": "./google-service-account.json",112"track": "internal"113}114}115}116}117```118119## Platform-Specific Guides120121### iOS122123- Use `npx testflight` for quick TestFlight submissions124- Configure Apple credentials via `eas credentials`125- See ./references/testflight.md for credential setup126- See ./references/ios-app-store.md for App Store submission127128### Android129130- Set up Google Play Console service account131- Configure tracks: internal → closed → open → production132- See ./references/play-store.md for detailed setup133134### Web135136- EAS Hosting provides preview URLs for PRs137- Production deploys to your custom domain138- See ./references/workflows.md for CI/CD automation139140## Automated Deployments141142EAS Workflows automate the build → submit → update → deploy pipeline for CI/CD. See ./references/workflows.md for deployment-oriented examples. To author or validate workflow YAML, use the `expo-cicd-workflows` skill — it works from the live workflow schema.143144## Version Management145146EAS manages version numbers automatically with `appVersionSource: "remote"`:147148```bash149# Check current versions150eas build:version:get151152# Manually set version153eas build:version:set -p ios --build-number 42154```155156## Monitoring157158```bash159# List recent builds160eas build:list161162# Check build status163eas build:view164165# View submission status166eas submit:list167```168