[CHORE] Rename Experimental iOS lane (#2717)

* Move build_fork to the end

* Rename release to build_experimental
This commit is contained in:
Diego Mello 2020-12-17 09:55:48 -03:00 committed by GitHub
parent 20a00ee792
commit 2f3a24824f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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