s416122-mlworkshops-notify/Jenkinsfile

10 lines
268 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:33:15 +02:00
emailext body: '${message}', from: 'annmad@st.amu.edu.pl', subject: 'Zadanie 5. Link do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl'
2020-04-22 21:11:21 +02:00
}
}
}
}