s416178-mlworkshops/Jenkinsfile_notify
2020-04-03 15:40:18 +02:00

12 lines
248 B
Plaintext

pipeline {
agent any
stages {
stage('Send email') {
steps {
emailext body: '${message}', subject: 'Warsztaty C - linki do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}