Dodaj 's416239-notify'

This commit is contained in:
Monika Janocha 2020-04-16 19:50:13 +00:00
parent 7f9d649717
commit e355452b3d

11
s416239-notify Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Mail') {
steps {
emailext body: '${message}', subject: 'Mail koncowy z warsztatow', to: 'monjan7@st.amu.edu.pl'
}
}
}
}