Skip to content

betaブランチ取り込み#4666

Merged
TinyKitten merged 12 commits intodevfrom
fix/beta-dev-conflict
Nov 22, 2025
Merged

betaブランチ取り込み#4666
TinyKitten merged 12 commits intodevfrom
fix/beta-dev-conflict

Conversation

@TinyKitten
Copy link
Member

@TinyKitten TinyKitten commented Nov 22, 2025

Summary by CodeRabbit

リリースノート

  • New Features

    • ベータビルドの自動作成ワークフローを実装しました。
    • Google Play Storeへの自動配信機能を追加しました。
  • Chores

    • 本番環境向けビルドおよび配信設定を最適化しました。

✏️ Tip: You can customize this high-level summary in your review settings.

@TinyKitten TinyKitten self-assigned this Nov 22, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 22, 2025

Caution

Review failed

The pull request is closed.

Note

.coderabbit.yml has unrecognized properties

CodeRabbit is using all valid settings from your configuration. Unrecognized properties (listed below) have been ignored and may indicate typos or deprecated fields that can be removed.

⚠️ Parsing warnings (1)
Validation error: Unrecognized key(s) in object: 'auto_review'
⚙️ Configuration instructions
  • Please see the configuration documentation for more information.
  • You can also validate your configuration using the online YAML validator.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Walkthrough

ベータブランチへのプッシュをトリガーとする新しいGitHub Actionsワークフローを追加し、EAS設定ファイルに本番環境向けのAndroidおよびiOSプラットフォーム固有の設定を組み込みました。ワークフローはAndroidビルドと Google Play Storeへの自動送信を実行します。

Changes

Cohort / File(s) Summary
GitHub Actions ワークフロー新規追加
.eas/workflows/create-beta-builds.yml
ベータブランチへのプッシュでトリガーされる新しいワークフローを追加。Android ビルドジョブ (production プロファイル) と Google Play Store への自動送信ジョブを定義。環境変数から base64 エンコードされた認証情報 (.env.local、Sentry、Google Services JSON、署名鍵、Gradle プロパティなど) をデコードして復元。
EAS 本番環境設定
eas.json
build.production に android.gradleCommand、ios スキーム/buildConfiguration を追加。submit.production に android トラック/applicationId、ios ascAppId/bundleIdentifier を追加し、プラットフォーム固有の本番ビルド・送信設定を強化。

Sequence Diagram(s)

sequenceDiagram
    participant GitHub as GitHub Push<br/>(beta branch)
    participant Workflow as GitHub Actions<br/>Workflow
    participant Build as EAS Build<br/>(Android)
    participant Submit as EAS Submit<br/>(Play Store)
    
    GitHub->>Workflow: Trigger: push to beta
    Workflow->>Workflow: Decode secrets<br/>.env.local, Sentry,<br/>Google Services, JKS, Gradle
    Workflow->>Build: Run build job<br/>(production profile)
    Build->>Build: Compile Android app
    Build-->>Workflow: build_id
    Workflow->>Submit: Run submit job<br/>(needs: build_android)
    Submit->>Submit: Upload to Play Store
    Submit-->>Workflow: Submission complete
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

  • 注意点: 環境変数の base64 デコード処理が正しく実装されているか確認 (特に .env.localsentry.propertiesgoogle-services.json)
  • 注意点: EAS build/submit の設定値が本番環境に適切に対応しているか確認 (android track、applicationId、ios ascAppId など)
  • 注意点: GitHub Actions シークレット側の設定が完了しているか外部で確認が必要

Suggested labels

ios, android

Poem

🐇 ベータなビルド、ワークフロー流れ
シークレットたちを base64 に包み
Play Store へ駆ける Android の力
本番設定、しっかり整えて
🎉 スムーズにリリース

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix/beta-dev-conflict

📜 Recent review details

Configuration used: Path: .coderabbit.yml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 7fd7a07 and 386ce16.

📒 Files selected for processing (2)
  • .eas/workflows/create-beta-builds.yml (1 hunks)
  • eas.json (2 hunks)

Comment @coderabbitai help to get the list of available commands and usage tips.

@TinyKitten TinyKitten merged commit 40f063c into dev Nov 22, 2025
3 checks passed
@TinyKitten TinyKitten deleted the fix/beta-dev-conflict branch November 22, 2025 22:01
@TinyKitten TinyKitten restored the fix/beta-dev-conflict branch November 22, 2025 22:02
@TinyKitten TinyKitten deleted the fix/beta-dev-conflict branch November 22, 2025 22:03
@coderabbitai coderabbitai bot mentioned this pull request Jan 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant