Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arturdent/6c1ba5347be84cf705c82044bc1d4db0 to your computer and use it in GitHub Desktop.
Save arturdent/6c1ba5347be84cf705c82044bc1d4db0 to your computer and use it in GitHub Desktop.
fastlane for fabric
# More documentation about how to customize your build
# can be found here:
# https://docs.fastlane.tools
fastlane_version "2.68.0"
# This value helps us track success metrics for Fastfiles
# we automatically generate. Feel free to remove this line
# once you get things running smoothly!
generated_fastfile_id "fa6391df-c182-4067-aece-a17f4d40d0ce"
default_platform :ios
# Fastfile actions accept additional configuration, but
# don't worry, fastlane will prompt you for required
# info which you can add here later
lane :beta do
# build your iOS app
build_app(
# scheme: "YourScheme",
export_method: "ad-hoc"
)
# upload to Beta by Crashlytics
crashlytics(
# keys for organization: 57apps
api_token: "005e4be091949dfd9ce4cafbf2a0d283d7237d73",
build_secret: "f3fa63107b998343d114b0123cdbd6c7107eac8a5e40508c6e710aaf397933fc"
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment