s416251-mlworkshops/s416251-notify

11 lines
247 B
Plaintext
Raw Normal View History

2020-04-21 21:16:32 +02:00
pipeline {
2020-04-21 21:21:36 +02:00
agent any
stages {
stage('Mail') {
steps {
2020-04-21 21:24:12 +02:00
emailext body: '${message}', subject: 'Uczenie maszynowe - warsztaty - s416251', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-21 21:21:36 +02:00
}
}
}
}