Skip to content

Commit 12906b0

Browse files
committed
[Chore] #228 - fastlane 배포 시 번들 버전 자동 업데이트 로직 삭제
1 parent 99cc46f commit 12906b0

1 file changed

Lines changed: 2 additions & 18 deletions

File tree

fastlane/Fastfile

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,30 +21,14 @@ platform :ios do
2121
readonly: true
2222
)
2323

24-
# 4. 버전별 빌드 번호 자동 관리 로직
25-
# 현재 Xcode 프로젝트에 설정된 버전(예: 1.2.0)을 가져옵니다.
26-
current_version = get_version_number(target: "Neki-iOS")
27-
28-
# 해당 버전에서 TestFlight에 올라간 가장 높은 빌드 번호를 확인합니다.
29-
# 만약 새 버전이라 데이터가 없다면 0을 반환합니다.
30-
latest_build = latest_testflight_build_number(
31-
version: current_version,
32-
initial_build_number: 0
33-
)
34-
35-
# 확인된 번호에 +1을 해서 로컬 프로젝트에 적용합니다.
36-
increment_build_number(
37-
build_number: latest_build + 1
38-
)
39-
40-
# 5. 앱 빌드 및 아카이브
24+
# 4. 앱 빌드 및 아카이브
4125
build_app(
4226
scheme: "Neki-iOS",
4327
configuration: "Release",
4428
export_method: "app-store"
4529
)
4630

47-
# 6. TestFlight 업로드
31+
# 5. TestFlight 업로드
4832
upload_to_app_store(
4933
skip_metadata: true,
5034
skip_screenshots: true,

0 commit comments

Comments
 (0)