2022-10-24 16:00:17 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
source ci_common.sh
|
|
|
|
|
2023-02-13 14:53:01 +02:00
|
|
|
setup_xcode_cloud_environment
|
2022-10-24 16:00:17 +03:00
|
|
|
|
2023-02-13 14:53:01 +02:00
|
|
|
install_xcode_cloud_brew_dependencies
|
2022-10-24 16:00:17 +03:00
|
|
|
|
2023-02-13 14:53:01 +02:00
|
|
|
if [ "$CI_WORKFLOW" = "Nightly" ]; then
|
2023-11-27 10:43:02 +02:00
|
|
|
bundle exec fastlane config_nightly build_number:"$CI_BUILD_NUMBER"
|
2025-03-07 13:47:11 +00:00
|
|
|
elif [ "$CI_WORKFLOW" = "Element Pro" ]; then
|
|
|
|
# Xcode Cloud automatically fetches the submodules.
|
|
|
|
bundle exec fastlane config_element_pro
|
2023-07-14 10:19:38 +02:00
|
|
|
else
|
|
|
|
bundle exec fastlane config_production
|
|
|
|
fi
|