Created
March 19, 2019 03:34
-
-
Save xotahal/0cfa791bebf48b841f53d30a6058991f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
desc "Build a new alpha version" | |
lane :alpha do |options| | |
tag_prefix = 'ios/alpha*' | |
title = 'iOS Alpha' | |
scheme = 'ExampleApp' | |
groups = 'Alpha Team' | |
flavor = 'alpha' | |
# Verify next release | |
next unless verify(scheme: scheme, title: title, tag_prefix: tag_prefix) | |
# Build ios app | |
build(scheme: scheme) | |
# And deploy it to the test flight | |
pilot(groups: groups) | |
# Notify slack and create the tag | |
post_deploy(flavor: flavor, title: title) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment