s416122-mlworkshops-notify/Jenkinsfile

10 lines
229 B
Plaintext
Raw Normal View History

2020-04-22 21:11:21 +02:00
pipeline {
agent any
stages {
stage('e-mail') {
steps {
2020-04-22 21:12:39 +02:00
emailext body: '${message}', subject: 'Zadanie 5. Link do projektów', to: 'annmad@st.amu.edu.pl'
2020-04-22 21:11:21 +02:00
}
}
}
}