Add notify

This commit is contained in:
s416178 2020-04-03 15:26:08 +02:00
parent 53028ac554
commit 46268db144

11
Jenkinsfile_notify Normal file
View File

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