add Jenkinsfile_notify

This commit is contained in:
Olga 2020-04-03 18:27:42 +02:00
parent 78091cda37
commit 6ab22d7f40

12
Jenkinsfile_notify Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent any
stages {
stage('Notify') {
steps {
emailext body: '${message}',
subject: 'Email z warsztatów', to: 'olgkwa@amu.edu.pl'
}
}
}
}