s4520929-mlworkshops/Jenkinsfile_notify

13 lines
225 B
Plaintext

pipeline {
agent any
stages {
stage('Notify') {
steps {
emailext body: '${message}',
subject: 'Email z warsztatów', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}