Skip to content

Commit

Permalink
fix: app_store_build_number 이미 배포된 빌드 넘버 기준으로 가져오지 않게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Do-hyun-Kim committed Oct 18, 2024
1 parent 2c9999a commit d420d83
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ platform :ios do
)

build_num = app_store_build_number(
api_key: api_key
api_key: api_key,
live: false
)

new_build_number = build_num + 1
Expand Down Expand Up @@ -149,7 +150,8 @@ platform :ios do
)

build_num = app_store_build_number(
api_key: api_key
api_key: api_key,
live: false
)

new_build_number = build_num + 1
Expand Down

0 comments on commit d420d83

Please sign in to comment.