diff options
author | Christian Segundo | 2024-07-08 16:33:24 +0200 |
---|---|---|
committer | Christian Segundo | 2024-07-08 16:33:24 +0200 |
commit | 087d687a1192a0367e58b03995920a676315f28c (patch) | |
tree | 5c26b0e05ae1c7f4773287cbc15e9f190122f7cd | |
parent | 61040f382eb7e5a61f8a12ddf5147a5a4556b923 (diff) | |
download | nvim-wiki.tar.gz |
send notifications on failed buildswiki
-rw-r--r-- | Jenkinsfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index b478fb3..d7b1888 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,4 +19,12 @@ pipeline { steps { sh '/entrypoint.sh' } } } + post { + always { + step([$class: 'Mailer', + notifyEveryUnstableBuild: true, + recipients: "christian+jenkins@segundo.io", + sendToIndividuals: true]) + } + } } |