Skip to content

Instantly share code, notes, and snippets.

@JavyMB
Created May 18, 2019 19:19
Show Gist options
  • Save JavyMB/4827437e2140ff7f635b0992e397d823 to your computer and use it in GitHub Desktop.
Save JavyMB/4827437e2140ff7f635b0992e397d823 to your computer and use it in GitHub Desktop.
fastlane_version '2.53.1'
before_all do
ensure_git_branch
ensure_git_status_clean
git_pull
end
platform :ios do
# iOS Lanes
desc 'Fetch certificates and provisioning profiles'
lane :certificates do
match(app_identifier: 'com.app.bundle', type: 'development', readonly: true)
match(app_identifier: 'com.app.bundle', type: 'appstore', readonly: true)
end
end
platform :android do
# Android Lanes
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment