From 2f3a24824fe9375f134e6a74d5e902d5daa025f2 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Thu, 17 Dec 2020 09:55:48 -0300 Subject: [PATCH] [CHORE] Rename Experimental iOS lane (#2717) * Move build_fork to the end * Rename release to build_experimental --- .circleci/config.yml | 2 +- ios/fastlane/Fastfile | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2541bbeb6..c2195c3b2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -248,7 +248,7 @@ commands: bundle exec fastlane ios build_official else if [[ $KEYSTORE ]]; then - bundle exec fastlane ios release # TODO: rename + bundle exec fastlane ios build_experimental else bundle exec fastlane ios build_fork fi diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 6b6dd11cc..85d810245 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -42,7 +42,7 @@ platform :ios do end desc "Build Experimental app" - lane :release do + lane :build_experimental do api_key = app_store_connect_api_key( key_id: "F296L2294Y", issuer_id: "69a6de8e-75cf-47e3-e053-5b8c7c11a4d1", @@ -60,11 +60,6 @@ platform :ios do ) end - desc "Build fork app" - lane :build_fork do - gym(scheme: "RocketChatRN", workspace: "RocketChatRN.xcworkspace", skip_codesigning: true, skip_archive: true) - end - desc "Build Official app" lane :build_official do sh "../../scripts/prepare_ios_official.sh" @@ -100,6 +95,11 @@ platform :ios do ) end + desc "Build fork app" + lane :build_fork do + gym(scheme: "RocketChatRN", workspace: "RocketChatRN.xcworkspace", skip_codesigning: true, skip_archive: true) + end + after_all do |lane| delete_keychain(name: ENV["MATCH_KEYCHAIN_NAME"]) end