s416178-mlworkshops/Jenkinsfile_notify

12 lines
248 B
Plaintext
Raw Permalink Normal View History

2020-04-03 15:26:08 +02:00
pipeline {
agent any
stages {
stage('Send email') {
steps {
2020-04-03 15:40:18 +02:00
emailext body: '${message}', subject: 'Warsztaty C - linki do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-03 15:26:08 +02:00
}
}
}
}