10 lines
238 B
Groovy
10 lines
238 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('e-mail') {
|
|
steps {
|
|
emailext body: '${message}', subject: 'Zadanie 5. Link do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl'
|
|
}
|
|
}
|
|
}
|
|
} |