12 lines
248 B
Plaintext
12 lines
248 B
Plaintext
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Send email') {
|
|
steps {
|
|
emailext body: '${message}', subject: 'Warsztaty C - linki do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl'
|
|
}
|
|
}
|
|
}
|
|
}
|