s416242_mlworkshops/s416242_notify

11 lines
242 B
Plaintext
Raw Permalink Normal View History

2020-04-16 21:50:30 +02:00
pipeline {
agent any
stages {
stage('Mail') {
steps {
2020-04-21 21:17:48 +02:00
emailext body: '${message}', subject: 'UM - linki do projektów (s416242)', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-16 21:50:30 +02:00
}
}
}
}