13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Notify') {
|
|
steps {
|
|
emailext body: '${message}',
|
|
subject: 'Email z warsztatów', to: 'olgkwa@amu.edu.pl'
|
|
}
|
|
}
|
|
}
|
|
}
|