s437843-mlworkshops-new/JenkinsfileNotify

10 lines
266 B
Plaintext
Raw Normal View History

2020-04-17 21:29:42 +02:00
pipeline {
agent { dockerfile true }
stages {
stage('Stage 1') {
steps {
2020-04-17 21:32:53 +02:00
emailext body: '${Message}', subject: 'Warsztaty Cloud Computing- Karolina Krzywda s437843', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-17 21:29:42 +02:00
}
}
}
}