Skip to content

Instantly share code, notes, and snippets.

@chris-gunawardena
Created March 4, 2017 12:04
Embed
What would you like to do?
# More documentation about how to customize your build
# can be found here:
# https://docs.fastlane.tools
fastlane_version "1.109.0"
default_platform :android
lane :alpha do
if ENV["hockey_api_token"] == nil
abort("\n\nERROR: Please set the hockey_api_token ENV variable and try again.\n\n")
end
# build the release variant
gradle(task: "assembleTstDebug")
# upload to HockeyApp
hockey(
api_token: ENV["hockey_api_token"]
)
slack(
# slack_url: "https://hooks.slack.com/services/xxxxxxxxx"
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment