10 lines
231 B
Groovy
10 lines
231 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('mail') {
|
|
steps {
|
|
emailext body: '${message}', subject: 'Łukasz Szymula mlworkshops', to: 'tomasz.zietkiewicz@amu.edu.pl'
|
|
}
|
|
}
|
|
}
|
|
} |