dawjur-mlworkshops-notify/Jenkinsfile

11 lines
208 B
Plaintext
Raw Normal View History

2020-04-03 15:21:52 +02:00
pipeline {
agent any
stages {
stage('mail') {
steps {
emailext body: '${message}', subject: 'Test', to: 'jurkiewiczdawid@gmail.com'
}
}
}
}