s152483-notify/Jenkinsfile
2020-04-03 14:55:55 +02:00

10 lines
191 B
Groovy

pipeline {
agent any
stages {
stage('mail') {
steps {
emailext body: 'Test', subject: 'Test', to: 'lookszym@gmail.com'
}
}
}
}