s416267-mlworkshops/JenkinsfileNotify
Kamil Paprota 8df5ef02eb metryki
2020-04-03 17:10:45 +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'
}
}
}
}