Skip to content

Commit

Permalink
change name of fastlane lane from beta to production to match build e…
Browse files Browse the repository at this point in the history
…nv var.
  • Loading branch information
steveyken committed Nov 15, 2018
1 parent 06502bd commit a6a21df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ platform :ios do
end

desc "Upload to TestFlight"
lane :beta do
lane :production do
raise_if_no_env_var(["APP_VERSION", "PILOT_USERNAME", "PILOT_IPA", "PILOT_TESTER_EMAIL", "ITUNESCONNECT_PASSWORD"])
version_number = ENV["APP_VERSION"]
sh %{ source ~/.circlerc; bundle exec fastlane fastlane-credentials add --username $PILOT_USERNAME --password $ITUNESCONNECT_PASSWORD }
Expand Down Expand Up @@ -76,7 +76,7 @@ platform :android do
end

desc "Upload to GooglePlay beta track"
lane :beta do
lane :production do
raise_if_no_env_var(["SUPPLY_APK", "SUPPLY_JSON_KEY"])
supply(
track: "beta",
Expand Down

0 comments on commit a6a21df

Please sign in to comment.