Skip to content

Commit

Permalink
feat(fastlane-setup): Add lane to get all certs and profiles in read-…
Browse files Browse the repository at this point in the history
…only mode

Useful to run app on device
  • Loading branch information
felixmeziere committed Apr 28, 2019
1 parent 2124220 commit 00ea14d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions generators/fastlane-setup/templates/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 00ea14d

Please sign in to comment.