Upload to sentry before releasing/tagging. (#1457)

This is to prevent tags being created for CI runs that have failed.
This commit is contained in:
Doug
2023-08-07 14:52:54 +01:00
committed by GitHub
parent ff3fd4d2c0
commit 5a25eae67f
3 changed files with 5 additions and 25 deletions

View File

@@ -73,28 +73,6 @@ lane :alpha do
upload_to_browserstack()
end
lane :app_store_release do
build_release()
release_to_github()
prepare_next_release()
upload_dsyms_to_sentry(dsym_path: './build/ElementX.app.dSYM.zip')
end
lane :build_release do
bump_build_number()
build_ios_app(
scheme: "ElementX",
clean: true,
export_method: "app-store",
output_directory: "build",
xcargs: "-allowProvisioningUpdates",
)
end
lane :unit_tests do
run_tests(
scheme: "UnitTests",