s416178-mlworkshops/Jenkinsfile_notify
2020-04-03 15:26:08 +02:00

12 lines
215 B
Plaintext

pipeline {
agent any
stages {
stage('Send email') {
steps {
emailext body: '${message}', subject: 'Testowy', to: 'marszc13@st.amu.edu.pl'
}
}
}
}