Skip to content

Commit

Permalink
Merge pull request #224 from felixmeziere/useful-additions-to-match-docs
Browse files Browse the repository at this point in the history
feat(fastlane-setup): Add lane to get all certs and profiles readonly
  • Loading branch information
felixmeziere authored Apr 28, 2019
2 parents 2124220 + 00ea14d commit caeed9a
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 caeed9a

Please sign in to comment.