s4520929-mlworkshops/Jenkinsfile_notify
2020-04-03 18:30:55 +02:00

13 lines
216 B
Plaintext

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