From 846ee0b7d3c54a36e08586c00ca3fa8dc0117fc4 Mon Sep 17 00:00:00 2001 From: KangKang <165460077+kanghun1121@users.noreply.github.com> Date: Mon, 20 Oct 2025 15:49:55 +0900 Subject: [PATCH 1/2] Update Fastfile --- AIProject/fastlane/Fastfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/AIProject/fastlane/Fastfile b/AIProject/fastlane/Fastfile index aa6ecea8..55f989b1 100644 --- a/AIProject/fastlane/Fastfile +++ b/AIProject/fastlane/Fastfile @@ -21,7 +21,14 @@ platform :ios do lock_when_sleeps: false ) - increment_build_number + latest = latest_testflight_build_number( + app_identifier: "com.est.ico", + version: version + ) + + increment_build_number( + build_number: latest + 1 + ) match( type: "appstore", @@ -76,7 +83,7 @@ platform :ios do lock_when_sleeps: false ) - increment_build_number + increment_build_number match( type: "appstore", From d79c8324c60fee05c2f5e0bc09b20ba639675ab2 Mon Sep 17 00:00:00 2001 From: KangKang <165460077+kanghun1121@users.noreply.github.com> Date: Mon, 20 Oct 2025 15:52:19 +0900 Subject: [PATCH 2/2] Update release.yml --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b15677c8..f3d3850a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: - "Release-*" jobs: - testflight: + release: runs-on: macos-latest