s416267-mlworkshops/JenkinsfileNotify
Kamil Paprota a9a8827123 metryki
2020-04-03 17:39:32 +02:00

11 lines
239 B
Plaintext

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