Update Jenkinsfile

This commit is contained in:
Firassawan 2020-03-09 18:06:15 -04:00 committed by GitHub
parent c4d9c11fca
commit cf2fe6f871
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

@ -26,14 +26,12 @@ pipeline {
success {
mail to: 'firassawan@icloud.com',
subject: "Succeeded Pipeline: ${currentBuild.fullDisplayName}",
body: "Email Notification: The build has successfully completed
${env.BUILD_URL}"
body: "Email Notification: The build has successfully completed ${env.BUILD_URL}"
}
failure {
mail to: 'firassawan@icloud.com',
subject: "Failed Pipeline: ${currentBuild.fullDisplayName}",
body: "Email Notification: The build has not completed successfully
${env.BUILD_URL}"
body: "Email Notification: The build has not completed successfully ${env.BUILD_URL}"
}
}