s416122-mlworkshops-notify/Jenkinsfile
2020-04-22 21:11:21 +02:00

10 lines
238 B
Groovy

pipeline {
agent any
stages {
stage('e-mail') {
steps {
emailext body: '${message}', subject: 'Zadanie 5. Link do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}