Convert more fastlane tools to swift commands (#5163)

* Upload dSYMs to sentry using swift and the sentry-cli instead of fastlane.

* Replace the fastlane `config_production` lane with a swift tools `ConfigureProduction` command.

* Replace Zsh with CI.run in the new ConfigureNightly command

* Replace the fastlane `tag_nightly` lane with a swift tools `TagNightly` command.

* Print out all the commands going through CI.Run and their arguments

* Address PR comments
This commit is contained in:
Stefan Ceriu
2026-03-05 16:14:09 +02:00
committed by GitHub
parent b1b0966cae
commit eddcc5c605
10 changed files with 133 additions and 85 deletions

View File

@@ -9,7 +9,7 @@ fetch_unshallow_repository
# Upload dsyms no matter the workflow
# Perform this step before releasing to github in case it fails.
bundle exec fastlane upload_dsyms_to_sentry dsym_path:"$CI_ARCHIVE_PATH/dSYMs"
swift run -q tools upload-dsyms --dsym-path "$CI_ARCHIVE_PATH/dSYMs"
generate_what_to_test_notes
@@ -17,5 +17,5 @@ if [ "$CI_WORKFLOW" = "Release" ]; then
bundle exec fastlane release_to_github
bundle exec fastlane prepare_next_release
elif [ "$CI_WORKFLOW" = "Nightly" ]; then
bundle exec fastlane tag_nightly build_number:"$CI_BUILD_NUMBER"
swift run -q tools ci tag-nightly --build-number "$CI_BUILD_NUMBER"
fi