s4520929-mlworkshops/Jenkinsfile_notify

13 lines
213 B
Plaintext
Raw Normal View History

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