add email notification
Some checks failed
s430705-training/pipeline/head There was a failure building this commit

This commit is contained in:
michalzareba 2021-05-07 23:03:14 +02:00
parent 59c827d5fd
commit aeab6ee186

View File

@ -23,5 +23,12 @@ pipeline {
archiveArtifacts artifacts: 'model_movies'
}
}
stage('Send notification'){
steps{
emailext body: currentBuild.result ?: 'SUCCESS +1 YEA',
subject: 's43705',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}
}