Skip to content

Commit

Permalink
broke out match into separate functions specific to their deploy build.
Browse files Browse the repository at this point in the history
  • Loading branch information
msadoon committed Mar 29, 2023
1 parent d164924 commit 30f3e18
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .fastlane/Fastfile
Expand Up @@ -4,14 +4,24 @@ default_platform :ios

platform :ios do
### MATCH
desc "Fastlane Match"
lane :match_all do
desc "Fastlane Match AppStore"
lane :setup_match_appstore do
setup_circle_ci
match_appstore
match_development
end

desc "Fastlane Match Enterprise"
lane :setup_match_enterprise do
setup_circle_ci
match_enterprise
end

desc "Fastlane Match Development"
lane :setup_match_development do
setup_circle_ci
match_development
end

desc "Fastlane Match - App Store"
private_lane :match_appstore do
match(
Expand Down Expand Up @@ -58,7 +68,7 @@ platform :ios do
### BETA

lane :beta_match_gym_appcenter_s3 do
match_all
setup_match_enterprise
beta_gym
beta_appcenter
beta_s3
Expand Down Expand Up @@ -109,7 +119,7 @@ platform :ios do
### PRODUCTION

lane :itunes_match_gym_deliver do
match_all
setup_match_appstore
itunes_gym
itunes_deliver
end
Expand Down Expand Up @@ -156,7 +166,7 @@ platform :ios do

### ALPHA
lane :alpha_match_gym_appcenter do
match_all
setup_match_enterprise
alpha_gym
alpha_appcenter
end
Expand Down

0 comments on commit 30f3e18

Please sign in to comment.