12 lines
215 B
Plaintext
12 lines
215 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Send email') {
|
||
|
steps {
|
||
|
emailext body: '${message}', subject: 'Testowy', to: 'marszc13@st.amu.edu.pl'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|