Files
letro-ios/ci_scripts/ci_post_clone.sh
Stefan Ceriu c3ba6113fe Replace the last of the fastlane lanes with swift tooling
- move more sharable code to CI static methods
- merge `release_to_github` and `prepare_next_release` into one single command as they had dependencies on each other
- remove all traces of ruby and fastlane
2026-03-11 10:06:44 +02:00

18 lines
417 B
Bash
Executable File

#!/bin/sh
source ci_common.sh
# Move to the project root
cd ..
install_xcode_cloud_brew_dependencies
if [ "$CI_WORKFLOW" = "Nightly" ]; then
swift run tools ci configure-nightly --build-number $CI_BUILD_NUMBER
elif [ "$CI_WORKFLOW" = "Element Pro" ]; then
# Xcode Cloud automatically fetches the submodules.
swift run pipeline configure-element-pro
else
swift run tools ci configure-production
fi