chore: split env into test/prod for separate TestFlight and production deployments - #285
Draft
rdyjun wants to merge 4 commits into
Draft
chore: split env into test/prod for separate TestFlight and production deployments#285rdyjun wants to merge 4 commits into
rdyjun wants to merge 4 commits into
Conversation
…n deployments - flutter-ios.yml: use ENV_TEST_B64, add codesign + TestFlight upload on push to develop - ios-deploy.yml: switch to ENV_PROD_B64 for App Store builds - android-deploy.yml: switch to ENV_PROD_B64 for production builds - android-test.yml: new workflow for develop → Google Play Internal with test ads
- flutter-ios.yml: verify .env is non-empty and contains BASE_URL to fail fast on missing secret - flutter-ios.yml: add flutter clean before pub get for consistent builds - flutter-ios.yml: fix misleading Xcode step name - android-test.yml: add Build Success Summary step for consistency
rdyjun
force-pushed
the
feature/split-env-test-prod
branch
from
June 30, 2026 14:29
7d3956a to
4f051a2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ENV_B64단일 secret을ENV_TEST_B64/ENV_PROD_B64두 개로 분리하여 테스트/프로덕션 환경을 명확하게 구분Changes
flutter-ios.ymlENV_TEST_B64사용, 코드사인 + TestFlight 업로드 추가 (push only), .env 검증 강화ios-deploy.ymlENV_PROD_B64로 변경android-deploy.ymlENV_PROD_B64로 변경android-test.ymlENV_TEST_B64로 Google Play Internal 업로드GitHub Secrets 등록 필요
ENV_TEST_B64— AdMob 키 없는 .env를 base64 인코딩한 값ENV_PROD_B64— AdMob 키 포함된 .env를 base64 인코딩한 값Test plan
ENV_TEST_B64,ENV_PROD_B64등록