Skip to content

Instantly share code, notes, and snippets.

@andreas-nesheim
Last active October 16, 2017 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreas-nesheim/bb5d011a01478804899b31646f209849 to your computer and use it in GitHub Desktop.
Save andreas-nesheim/bb5d011a01478804899b31646f209849 to your computer and use it in GitHub Desktop.
# More documentation about how to customize your build
# can be found here:
# https://docs.fastlane.tools
fastlane_version "1.109.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 "eaa63146-cce2-47fa-b5d5-4884f76ecada"
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
gym(
# scheme: "YourScheme",
export_method: "ad-hoc"
)
# upload to HockeyApp
hockey(
# api_token: "YOUR_API_TOKEN"
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment