Skip to content

Instantly share code, notes, and snippets.

@aspick
Last active August 20, 2018 13:23
Show Gist options
  • Save aspick/741410efd9abf26fdb95a53ccafa3924 to your computer and use it in GitHub Desktop.
Save aspick/741410efd9abf26fdb95a53ccafa3924 to your computer and use it in GitHub Desktop.
fast lane crashlytics beta minimal setting
default_platform(:ios)
platform :ios do
desc "Push a new beta build to Crashlytics"
lane :beta do
cert
sigh(adhoc: true)
cocoapods
build_app(
workspace: "<ProjectName>.xcworkspace",
export_method: "ad-hoc"
)
crashlytics(
api_token: "<API Token>",
build_secret: "<Build Secret>"
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment