Created
January 9, 2015 14:40
-
-
Save KrauseFx/b534ad3770073b89f6b3 to your computer and use it in GitHub Desktop.
Lanes
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
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