diff --git a/Jenkinsfile_notify b/Jenkinsfile_notify new file mode 100644 index 0000000..6f5681a --- /dev/null +++ b/Jenkinsfile_notify @@ -0,0 +1,11 @@ +pipeline { + agent any + + stages { + stage('Send email') { + steps { + emailext body: '${message}', subject: 'Testowy', to: 'marszc13@st.amu.edu.pl' + } + } + } +}