s416178-mlworkshops/Jenkinsfile_notify

12 lines
215 B
Plaintext
Raw Normal View History

2020-04-03 15:26:08 +02:00
pipeline {
agent any
stages {
stage('Send email') {
steps {
emailext body: '${message}', subject: 'Testowy', to: 'marszc13@st.amu.edu.pl'
}
}
}
}