s416122-mlworkshops-notify/Jenkinsfile
2020-04-22 19:27:59 +00:00

10 lines
258 B
Groovy

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