Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
Expand Down Expand Up @@ -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
Expand Down