Skip to content

Commit

Permalink
test mode values place holder branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kshann committed Jan 16, 2025
1 parent 5d0c666 commit 6126511
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def self.increment_build_number(platform, options, other_action)
end

def self.calculate_next_build_number(platform, options, other_action)
testflight_build_number = 1 # fetch_testflight_build_number(platform, options, other_action)
testflight_build_number = fetch_testflight_build_number(platform, options, other_action)
xcodeproj_build_number = current_build_number
if platform == "macos"
appcast_build_number = fetch_appcast_build_number(platform)
Expand Down Expand Up @@ -311,7 +311,8 @@ def self.fetch_testflight_build_number(platform, options, other_action)
other_action.latest_testflight_build_number(
api_key: get_api_key(other_action),
username: get_username(options),
platform: platform == "macos" ? "osx" : "ios"
platform: platform == "macos" ? "osx" : "ios",
app_identifier: options[:app_identifier]
)
end

Expand Down

0 comments on commit 6126511

Please sign in to comment.