This commit is contained in:
Lavo 2020-04-15 22:07:51 -04:00
parent 2d08055066
commit 5bc7a87057

4
Jenkinsfile vendored
View file

@ -26,10 +26,9 @@ pipeline {
} }
stage('Deploy') { stage('Deploy') {
steps { steps {
sh 'mvn deploy' echo 'Deploying'
} }
} }
}
post { post {
success { success {
mail to: 'sean.how0@gmail.com', mail to: 'sean.how0@gmail.com',
@ -42,4 +41,5 @@ pipeline {
body: "Something is wrong with ${env.BUILD_URL}" body: "Something is wrong with ${env.BUILD_URL}"
} }
} }
}
} }