s152483-notify/Jenkinsfile
2020-04-23 11:44:03 +00:00

10 lines
231 B
Groovy

pipeline {
agent any
stages {
stage('mail') {
steps {
emailext body: '${message}', subject: 'Łukasz Szymula mlworkshops', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}