s416267-mlworkshops/JenkinsfileNotify
Kamil Paprota 69e1445ab2 metryki
2020-04-03 17:37:30 +02:00

11 lines
229 B
Plaintext

pipeline {
agent any
stages {
stage('Mail') {
steps {
emailext body: '${message}', subject: 'Linki do projektów - Warsztaty', to: 'kamilzul1@gmail.com'
}
}
}
}