12 lines
303 B
Plaintext
12 lines
303 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('Sending email') {
|
||
|
steps {
|
||
|
mail bcc: '', body: $Message, cc: '', from: '', replyTo: '', subject: 'Wykonanie zadań z warsztatów uczenia maszynowego C - Bartłomiej Wierzbiński - s452108', to: 'barwie2@st.amu.edu.pl'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|