Update Jenkinsfile

This commit is contained in:
Muneeb Nezameddin 2020-03-16 03:14:48 -04:00 committed by GitHub
parent 0e5b76b38b
commit 4923c84638
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

@ -19,6 +19,9 @@ pipeline {
stage('Deploy') { stage('Deploy') {
steps { steps {
echo 'Deploy' echo 'Deploy'
}
}
}
post { post {
success { success {
mail to: 'mnezam.31@gmail.com', mail to: 'mnezam.31@gmail.com',
@ -30,8 +33,5 @@ pipeline {
subject: "Failed Pipeline}", subject: "Failed Pipeline}",
body: "Something is wrong" body: "Something is wrong"
} }
}
}
}
} }
} }