s437843-mlworkshops-new/JenkinsfileNotify
2020-04-17 21:32:53 +02:00

10 lines
266 B
Plaintext

pipeline {
agent { dockerfile true }
stages {
stage('Stage 1') {
steps {
emailext body: '${Message}', subject: 'Warsztaty Cloud Computing- Karolina Krzywda s437843', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}