s4520929-mlworkshops/Jenkinsfile_notify

13 lines
216 B
Plaintext
Raw Normal View History

2020-04-03 18:27:42 +02:00
pipeline {
agent any
stages {
stage('Notify') {
steps {
emailext body: '${message}',
2020-04-03 18:30:55 +02:00
subject: 'Email z warsztatów', to: 'olgkwa@st.amu.edu.pl'
2020-04-03 18:27:42 +02:00
}
}
}
}