Skip to content

Commit

Permalink
Fix get_api_key
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Oct 3, 2024
1 parent a9ff856 commit 09324ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def self.fetch_appcast_build_number(platform)

def self.fetch_testflight_build_number(platform, options, other_action)
other_action.latest_testflight_build_number(
api_key: get_api_key,
api_key: get_api_key(other_action),
username: get_username(options),
platform: platform
)
Expand Down Expand Up @@ -266,7 +266,7 @@ def self.get_username(options)
elsif options[:username]
options[:username]
else
git_user_email = `git", "config", "user.email"`.chomp
git_user_email = `git config user.email`.chomp
if git_user_email.end_with?("@duckduckgo.com")
git_user_email
end
Expand Down

0 comments on commit 09324ff

Please sign in to comment.