Last active
June 21, 2016 23:51
-
-
Save michaelneale/ce1eec3318404df252ed49886d38a165 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
{ | |
"stages" : [ | |
{ | |
"name" : "build", | |
"steps" : [ | |
{ | |
"type" : "sh", | |
"value" : "bundle install" | |
}, | |
{ | |
"type" : "withTimeout", | |
"time" : 5, | |
"steps" : [ | |
{ | |
"type" : "sh", | |
"value" : "./test.sh" | |
}, | |
{ | |
"type" : "echo", | |
"value" : "I am a bad person" | |
}, | |
{ | |
"type" : "onBranch", | |
"branch" : "master", | |
"steps" : [ | |
{ | |
"type" : "sh", | |
"value" : "./deploy.sh" | |
} | |
] | |
}, | |
] | |
} | |
] | |
} | |
], | |
"notifications" : { | |
}, | |
"environment" : { | |
}, | |
"image": "node:5.11.1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment