Task 5 - add email notification

This commit is contained in:
s452111 2020-04-23 12:00:45 +02:00
parent bd8a4cc189
commit ba7e948752

12
Jenkinsfile_notify Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent any
stages {
stage('Sending email') {
steps {
mail body: "$Message", cc: 'piozim4@st.amu.edu.pl', subject: 'ML workshops 2020 - s452111', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}