From 00ea14da2cdbe47cd2aa1f31dba6008d6ffa9cae Mon Sep 17 00:00:00 2001 From: Felix Meziere Date: Sun, 28 Apr 2019 19:14:32 +0100 Subject: [PATCH] feat(fastlane-setup): Add lane to get all certs and profiles in read-only mode Useful to run app on device --- .../fastlane-setup/templates/fastlane/Fastfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/generators/fastlane-setup/templates/fastlane/Fastfile b/generators/fastlane-setup/templates/fastlane/Fastfile index 6dd3338..40af04d 100644 --- a/generators/fastlane-setup/templates/fastlane/Fastfile +++ b/generators/fastlane-setup/templates/fastlane/Fastfile @@ -208,6 +208,20 @@ platform :ios do end end + lane :get_certificates_and_profiles do |options| + match( + type: 'development', + shallow_clone: true, + clone_branch_directly: true, + readonly: true + ) + match( + shallow_clone: true, + clone_branch_directly: true, + readonly: true + ) + end + end # ANDROID