s416122-mlworkshops-notify/Jenkinsfile
2020-04-22 19:12:39 +00:00

10 lines
229 B
Groovy

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