dawjur-mlworkshops-notify/Jenkinsfile

11 lines
212 B
Plaintext
Raw Permalink Normal View History

2020-04-03 15:21:52 +02:00
pipeline {
agent any
stages {
stage('mail') {
steps {
2020-04-03 15:23:33 +02:00
emailext body: '${message}', subject: 'Test', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-03 15:21:52 +02:00
}
}
}
}