Skip to content

Commit 7f5bee1

Browse files
committed
Remove deprecated lane
1 parent 5e32ed7 commit 7f5bee1

File tree

1 file changed

+2
-30
lines changed

1 file changed

+2
-30
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -481,11 +481,8 @@ platform :ios do
481481
#####################################################################################
482482
desc 'Builds and uploads a beta release for distribution'
483483
lane :build_and_upload_beta_release do |options|
484-
build_and_upload_release(
485-
skip_confirm: options[:skip_confirm],
486-
create_gh_release: options[:create_gh_release],
487-
beta_release: true
488-
)
484+
build_and_upload_app_center(options)
485+
build_and_upload_app_store_connect(options)
489486
end
490487

491488
#####################################################################################
@@ -505,31 +502,6 @@ platform :ios do
505502
#####################################################################################
506503
desc 'Builds and uploads a stable release for distribution'
507504
lane :build_and_upload_stable_release do |options|
508-
build_and_upload_release(
509-
skip_confirm: options[:skip_confirm],
510-
create_gh_release: options[:create_gh_release],
511-
beta_release: false
512-
)
513-
end
514-
515-
#####################################################################################
516-
# build_and_upload_release [Deprecated - Can be removed once CircleCI is no longer in use]
517-
# -----------------------------------------------------------------------------------
518-
# This lane builds the app and uploads it for both internal and external distribution
519-
# -----------------------------------------------------------------------------------
520-
# Usage:
521-
# bundle exec fastlane build_and_upload_release [skip_confirm:<skip confirm>]
522-
# [create_gh_release:<create release on GH>] [beta_release:<is a beta release>]
523-
#
524-
# Example:
525-
# bundle exec fastlane build_and_upload_release
526-
# bundle exec fastlane build_and_upload_release skip_confirm:true
527-
# bundle exec fastlane build_and_upload_release create_gh_release:true
528-
# bundle exec fastlane build_and_upload_release beta_release:true
529-
#####################################################################################
530-
desc 'Builds and uploads for distribution'
531-
lane :build_and_upload_release do |options|
532-
build_and_upload_app_center(options) if options[:beta_release]
533505
build_and_upload_app_store_connect(options)
534506
end
535507

0 commit comments

Comments
 (0)