11 lines
209 B
Plaintext
11 lines
209 B
Plaintext
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stare('Mail') {
|
|
steps {
|
|
emailtext body: '${message}', subject: 'Warsztaty - uczenie maszynowe', to: 'dianakrol3@gmail.com'
|
|
}
|
|
}
|
|
}
|
|
|