Skip to content

Commit

Permalink
Update Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Siwon-L committed Sep 23, 2024
1 parent 2998804 commit 674cd7c
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ KEYCHAIN_NAME = ENV["KEYCHAIN_NAME"]
KEYCHAIN_PASSWORD = ENV["KEYCHAIN_PASSWORD"]
SLACK_HOOK_URL = ENV["SLACK_HOOK_URL"]

# FASTLANE_API_KEY_ID = "BFSDYUK53R"
# FASTLANE_API_KEY_ISSUER_ID = "a745a47f-300d-4f82-b599-6f46f2b32222"

FASTLANE_API_KEY_ID = ENV["FASTLANE_API_KEY_ID"]
FASTLANE_API_KEY_ISSUER_ID = ENV["FASTLANE_API_KEY_ISSUER_ID"]

Expand Down Expand Up @@ -52,6 +49,17 @@ platform :ios do
)

new_build_number = latest_testflight_build_number + 1


increment_version_number(
version_number: "1.2.1",
xcodeproj: "Projects/App/Moneymong.xcodeproj"
)

increment_build_number(
build_number: new_build_number,
xcodeproj: "Projects/App/Moneymong.xcodeproj"
)

# ✅ 빌드
build_app(
Expand Down

0 comments on commit 674cd7c

Please sign in to comment.