s416122-mlworkshops-notify/Jenkinsfile
2020-04-22 19:33:15 +00:00

10 lines
268 B
Groovy

pipeline {
agent any
stages {
stage('e-mail') {
steps {
emailext body: '${message}', from: 'annmad@st.amu.edu.pl', subject: 'Zadanie 5. Link do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}