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

8
Jenkinsfile vendored
View file

@ -19,7 +19,10 @@ 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',
subject: "Successful Pipeline", subject: "Successful Pipeline",
@ -31,7 +34,4 @@ pipeline {
body: "Something is wrong" body: "Something is wrong"
} }
} }
}
}
}
} }