s4520929-mlworkshops/Jenkinsfile_notify

13 lines
245 B
Plaintext
Raw Permalink Normal View History

2020-04-03 18:27:42 +02:00
pipeline {
agent any
stages {
stage('Notify') {
steps {
emailext body: '${message}',
2020-04-21 16:00:00 +02:00
subject: 'Email z warsztatów - Olga Kwaśniewska', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-03 18:27:42 +02:00
}
}
}
}