10 lines
258 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |