Skip to content

Commit

Permalink
Merge branch 'release-5.7.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
msadoon committed Mar 30, 2023
2 parents 90a472e + 60cefd2 commit dffe4e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -319,14 +319,14 @@ workflows:
filters:
branches:
only: main
requires: *all_jobs
# requires: *all_jobs
- beta:
context: aws
filters:
branches:
# matches all branches that begin with 'beta-dist'
only: /beta-dist-.*/
requires: *all_jobs
# requires: *all_jobs
- alpha:
context: aws
filters:
Expand Down
8 changes: 7 additions & 1 deletion .fastlane/Fastfile
@@ -1,5 +1,4 @@
fastlane_version "2.158.0"
xcodes(version: "13.3.1", select_for_current_build_only: true)
default_platform :ios

platform :ios do
Expand Down Expand Up @@ -69,6 +68,7 @@ platform :ios do

lane :beta_match_gym_appcenter_s3 do
setup_match_enterprise
xcode_check
beta_gym
beta_appcenter
beta_s3
Expand Down Expand Up @@ -120,6 +120,7 @@ platform :ios do

lane :itunes_match_gym_deliver do
setup_match_appstore
xcode_check
itunes_gym
itunes_deliver
end
Expand Down Expand Up @@ -167,6 +168,7 @@ platform :ios do
### ALPHA
lane :alpha_match_gym_appcenter do
setup_match_enterprise
xcode_check
alpha_gym
alpha_appcenter
end
Expand Down Expand Up @@ -223,6 +225,10 @@ platform :ios do
)
end

private_lane :xcode_check do
xcodes(version: "13.3.1", select_for_current_build_only: true)
end

private_lane :build_the_app do |options|
export_options = {}

Expand Down

0 comments on commit dffe4e2

Please sign in to comment.