mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00
14 lines
287 B
Bash
Executable File
14 lines
287 B
Bash
Executable File
#!/bin/sh
|
|
|
|
source ci_common.sh
|
|
|
|
setup_environment
|
|
|
|
if [ "$CI_WORKFLOW" = "Release" ]; then
|
|
install_python_dependencies
|
|
|
|
bundle exec fastlane release_to_github
|
|
fi
|
|
|
|
# Upload dsyms no matter the workflow
|
|
bundle exec fastlane upload_dsyms_to_sentry dsym_path:"$CI_ARCHIVE_PATH/dSYMs" |