This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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