Jenkinsfile zadanie 5.

This commit is contained in:
s416122 2020-04-22 21:11:21 +02:00
commit 7cf7faadec

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('e-mail') {
steps {
emailext body: '${message}', subject: 'Zadanie 5. Link do projektów', to: 'tomasz.zietkiewicz@amu.edu.pl'
}
}
}
}