Skip to content

Commit 40898d8

Browse files
authored
Merge pull request #634 from ESTiOSAI/kanghun1121-patch-3
깃허브 액션 빌드 넘버 증가 로직 변경
2 parents b3b1bac + d79c832 commit 40898d8

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "Release-*"
77

88
jobs:
9-
testflight:
9+
release:
1010

1111
runs-on: macos-latest
1212

AIProject/fastlane/Fastfile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,14 @@ platform :ios do
2121
lock_when_sleeps: false
2222
)
2323

24-
increment_build_number
24+
latest = latest_testflight_build_number(
25+
app_identifier: "com.est.ico",
26+
version: version
27+
)
28+
29+
increment_build_number(
30+
build_number: latest + 1
31+
)
2532

2633
match(
2734
type: "appstore",
@@ -76,7 +83,7 @@ platform :ios do
7683
lock_when_sleeps: false
7784
)
7885

79-
increment_build_number
86+
increment_build_number
8087

8188
match(
8289
type: "appstore",

0 commit comments

Comments
 (0)