From c52f52d1b495af2286cf538c97fbd543b793ceea Mon Sep 17 00:00:00 2001 From: Mark Holland Date: Mon, 2 Jul 2018 09:51:20 +0100 Subject: [PATCH] add lane for updating dsym symbols in bugsnag --- ios/fastlane/Fastfile | 6 ++++++ ios/fastlane/README.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 5582a2cd..df91ced2 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -217,4 +217,10 @@ platform :ios do force_for_new_devices: true ) end + + lane :refresh_dsyms do |options| + download_dsyms(version: options[:version]) + upload_symbols_to_bugsnag + clean_build_artifacts + end end diff --git a/ios/fastlane/README.md b/ios/fastlane/README.md index ac98fad0..d0a8ca8e 100644 --- a/ios/fastlane/README.md +++ b/ios/fastlane/README.md @@ -100,6 +100,12 @@ fastlane ios devices Add devices +### ios refresh_dsyms + +``` +fastlane ios refresh_dsyms +``` + --- This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.