EAS サービス(有料)。Expo アプリをアプリストアにデプロイ(公開・配置)します。iOS App Store、Google Play Store、TestFlight へのビルドと提出、eas.json ビルド・提出設定の構成、アプリのバージョンとビルド番号の管理、App Store メタデータと ASO(検索最適化)の公開に対応しています。 次のような場合に使用: - ユーザーがアプリを本番環境やアプリストアにデプロイ・リリース・公開したい - 本番用ビルドを準備している - eas build や eas submit を実行している - TestFlight へ配信している - バージョン番号やビルド番号を更新している - ストアのリスティング(商品説明ページ)メタデータを設定している Expo ウェブサイトまたは API ルートのデプロイには、eas-hosting スキルを使用してください。
EAS service (paid). Deploy Expo apps to the app stores 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, and publish App Store metadata and ASO. Use whenever the user wants to deploy, release, or ship an app to production or the app stores, is preparing a production build, running eas build or eas submit, shipping to TestFlight, bumping version or build numbers, or setting up store listing metadata. For deploying an Expo website or API routes, use the eas-hosting skill.
EAS サービス - 費用が発生します。 このスキルは Expo Application Services(EAS)を使用します。EAS は有料サービスで、無料枠には制限があります。
eas buildとeas submitはあなたの契約プランのビルド時間を消費し、ストアへの申請には有料の Apple Developer アカウントと Google Play アカウントが必要です。クラウドコマンドを実行する前に、https://expo.dev/pricing を確認してください。
このスキルは、EAS(Expo Application Services)を使用して Expo アプリを iOS App Store、Google Play Store、TestFlight にビルドしてリリースする方法をカバーしています。Expo ウェブサイトや API ルートを EAS Hosting にデプロイする場合は、eas-hosting スキルを使用してください。
必要に応じてこれらのリソースを参照してください:
npm install -g eas-cli
eas login
npx eas-cli@latest init
このコマンドでビルド設定を記述した eas.json が作成されます。
# iOS App Store 用ビルド
npx eas-cli@latest build -p ios --profile production
# Android Play Store 用ビルド
npx eas-cli@latest build -p android --profile production
# 両方のプラットフォーム
npx eas-cli@latest build --profile production
# iOS: ビルドして App Store Connect に申請
npx eas-cli@latest build -p ios --profile production --submit
# Android: ビルドして Play Store に申請
npx eas-cli@latest build -p android --profile production --submit
# iOS TestFlight への申請(簡易コマンド)
npx testflight
Expo ウェブサイトや Expo Router API ルートを EAS Hosting にデプロイする方法(npx expo export -p web の実行後に eas deploy)は、eas-hosting スキルでカバーされています。このスキルはネイティブアプリのストアリリースを対象としています。
本番環境デプロイ用の標準的な eas.json:
{
"cli": {
"version": ">= 16.0.1",
"appVersionSource": "remote"
},
"build": {
"production": {
"autoIncrement": true,
"ios": {
"resourceClass": "m-medium"
}
},
"development": {
"developmentClient": true,
"distribution": "internal"
}
},
"submit": {
"production": {
"ios": {
"appleId": "your@email.com",
"ascAppId": "1234567890"
},
"android": {
"serviceAccountKeyPath": "./google-service-account.json",
"track": "internal"
}
}
}
}
npx testflight で TestFlight に素早く申請できますeas credentials で Apple 認証情報を設定しますEAS Workflows(ワークフロー管理機能)は、ビルド → 申請 → 更新パイプラインを自動化します。ストアリリースの例については ./references/workflows.md を参照してください。ワークフロー YAML の作成または検証が必要な場合は、eas-workflows スキルを使用してください。このスキルは最新のワークフロースキーマから動作します。
EAS は appVersionSource: "remote" でバージョン番号を自動管理します:
# 現在のバージョンを確認
eas build:version:get
# バージョンを手動で設定
eas build:version:set -p ios --build-number 42
# 最近のビルド一覧を表示
eas build:list
# ビルドの状態を確認
eas build:view
# 申請状態を表示
eas submit:list
このスキルでエラーが発生したり、情報が不正確または古い場合は、Expo の改善に協力してください:
npx --yes submit-expo-feedback@latest --category skills --subject "eas-app-stores" "<改善提案>"
具体的で実用的なフィードバックがある場合のみ送信してください。できるだけ詳しい関連情報を含めてください。
AI エージェントが繰り返し失敗したか、ユーザーが Expo のタスクを引き継がなければならなかった場合は、expo-skill-feedback スキルを読み込んで、上記のコマンドの代わりに eval-candidate フローに従ってください。
EAS service - costs apply. This skill uses Expo Application Services (EAS), a paid product with free-tier limits.
eas buildandeas submitconsume your plan's build minutes, and store submission requires paid Apple Developer and Google Play accounts. Review https://expo.dev/pricing before running cloud commands.
This skill covers building and releasing Expo apps to the iOS App Store, Google Play Store, and TestFlight using EAS (Expo Application Services). For deploying an Expo website or API routes to EAS Hosting, use the eas-hosting skill.
Consult these resources as needed:
npm install -g eas-cli
eas login
npx eas-cli@latest init
This creates eas.json with build profiles.
# iOS App Store build
npx eas-cli@latest build -p ios --profile production
# Android Play Store build
npx eas-cli@latest build -p android --profile production
# Both platforms
npx eas-cli@latest build --profile production
# iOS: Build and submit to App Store Connect
npx eas-cli@latest build -p ios --profile production --submit
# Android: Build and submit to Play Store
npx eas-cli@latest build -p android --profile production --submit
# Shortcut for iOS TestFlight
npx testflight
Deploying an Expo website or Expo Router API routes to EAS Hosting (npx expo export -p web then eas deploy) is covered by the eas-hosting skill. This skill focuses on native app store releases.
Standard eas.json for production deployments:
{
"cli": {
"version": ">= 16.0.1",
"appVersionSource": "remote"
},
"build": {
"production": {
"autoIncrement": true,
"ios": {
"resourceClass": "m-medium"
}
},
"development": {
"developmentClient": true,
"distribution": "internal"
}
},
"submit": {
"production": {
"ios": {
"appleId": "your@email.com",
"ascAppId": "1234567890"
},
"android": {
"serviceAccountKeyPath": "./google-service-account.json",
"track": "internal"
}
}
}
}
npx testflight for quick TestFlight submissionseas credentialsEAS Workflows automate the build → submit → update pipeline for CI/CD. See ./references/workflows.md for store-release examples. To author or validate workflow YAML, use the eas-workflows skill - it works from the live workflow schema.
EAS manages version numbers automatically with appVersionSource: "remote":
# Check current versions
eas build:version:get
# Manually set version
eas build:version:set -p ios --build-number 42
# List recent builds
eas build:list
# Check build status
eas build:view
# View submission status
eas submit:list
If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:
npx --yes submit-expo-feedback@latest --category skills --subject "eas-app-stores" "<actionable feedback>"
Only submit when you have something specific and actionable to report. Include as much relevant context as possible. If an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。