Skip to content

Instantly share code, notes, and snippets.

@xotahal
Created March 19, 2019 03:34
Show Gist options
  • Save xotahal/0cfa791bebf48b841f53d30a6058991f to your computer and use it in GitHub Desktop.
Save xotahal/0cfa791bebf48b841f53d30a6058991f to your computer and use it in GitHub Desktop.
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