Beam/ci_scripts/ci_post_xcodebuild.sh
Stefan Ceriu 7ab64d4cb4
Project file removal (#569)
* Deleted project file

* Add back SPM Package.resolved + .gitignore

* Generate project file on release builds

* Converge on single CI setup scripts within `ci_scripts/ci_common.sh`

* Fix unit tests

* Use new `ci_common/setup_github_actions_environment` setup script on all workflows

* Move lfs validation check to the pre-commit hooks. Remove validate-lfs github actions workflow

* Fix integration tests workflow

* Tweaks following code review
2023-02-13 12:53:01 +00:00

15 lines
357 B
Bash
Executable File

#!/bin/sh
source ci_common.sh
setup_xcode_cloud_environment
if [ "$CI_WORKFLOW" = "Release" ]; then
install_xcode_cloud_python_dependencies
bundle exec fastlane release_to_github
bundle exec fastlane prepare_next_release
fi
# Upload dsyms no matter the workflow
bundle exec fastlane upload_dsyms_to_sentry dsym_path:"$CI_ARCHIVE_PATH/dSYMs"