edit Jenkinsfile

This commit is contained in:
Bombo 2023-03-25 13:47:31 +01:00
parent c139e3535a
commit 9d86baba09

7
Jenkinsfile vendored
View File

@ -1,4 +1,4 @@
pipeline {
ipeline {
agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters {
@ -25,5 +25,10 @@ pipeline {
archiveArtifacts 'output.txt'
}
}
stage('Notify') {
steps {
emailext attachLog: true, attachmentsPattern: 'output.txt', body: "${INPUT_TEXT}", subject: 'Hello World!', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms; tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}