s152483-notify/Jenkinsfile

10 lines
231 B
Plaintext
Raw Normal View History

2020-04-03 14:52:03 +02:00
pipeline {
2020-04-03 14:55:55 +02:00
agent any
2020-04-03 14:52:03 +02:00
stages {
stage('mail') {
steps {
2020-04-23 13:44:03 +02:00
emailext body: '${message}', subject: 'Łukasz Szymula mlworkshops', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-03 14:52:03 +02:00
}
}
}
}