Skip to content

Instantly share code, notes, and snippets.

@KrauseFx
Created January 9, 2015 14:40
Show Gist options
  • Save KrauseFx/b534ad3770073b89f6b3 to your computer and use it in GitHub Desktop.
Save KrauseFx/b534ad3770073b89f6b3 to your computer and use it in GitHub Desktop.
Lanes
before_all do
increment_build_number
cocoapods
xctool :test
end
lane :beta do
sigh :adhoc
deliver :beta
hockey
end
lane :deploy do
sigh
snapshot
deliver :force
frameit
end
after_all do |lane|
slack({
message: "Successfully deployed a new version."
})
say "My job is done here"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment