This commit is contained in:
Kamil Paprota 2020-04-03 17:10:45 +02:00
parent 203fa94245
commit 8df5ef02eb

11
JenkinsfileNotify Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Mail') {
steps {
emailext body: '${message}', subject: 'Linki do projektów - Warsztaty', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}