s416267-mlworkshops/JenkinsfileNotify

11 lines
239 B
Plaintext
Raw Permalink Normal View History

2020-04-03 17:10:45 +02:00
pipeline {
agent any
stages {
stage('Mail') {
steps {
2020-04-03 17:39:32 +02:00
emailext body: '${message}', subject: 'Linki do projektów - Warsztaty', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-03 17:10:45 +02:00
}
}
}
}