Skip to content

Commit 901d249

Browse files
authored
[#225] 테스트플라이트 자동 배포가 실패하는 현상을 해결한다 (#228)
* style: 정확하게 테플이라는 이름 명시 * refactor: 앱 빌드 시간 단축 * chore: fastlane/README.md 추적 끄기 * test: lint 모듈 validation 스킵 * fix: 내부 testflight 이름과 겹치는 현상 수정 * fix: export_method 수정
1 parent 5788449 commit 901d249

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/testflight.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
printf '%s' "$ASC_KEY_CONTENT" | base64 -D > "$ASC_KEY_PATH"
4646
4747
- name: Upload to TestFlight
48-
run: bundle exec fastlane testflight
48+
run: bundle exec fastlane deploy_testflight

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ platform :ios do
3939
build_app(
4040
project: "DevLog.xcodeproj",
4141
scheme: "DevLog",
42-
export_method: "app-store-connect",
42+
export_method: "app-store",
4343
xcargs: "-skipPackagePluginValidation"
4444
)
4545

4646
next api_key
4747
end
4848

49-
lane :testflight do
49+
lane :deploy_testflight do
5050
api_key = build_for_store
5151

5252
upload_to_testflight(

0 commit comments

Comments
 (0)