[CHORE] Rename Experimental iOS lane (#2717)
* Move build_fork to the end * Rename release to build_experimental
This commit is contained in:
parent
20a00ee792
commit
2f3a24824f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue