From 46268db14443e2646da8bf36b608c47d192d21c0 Mon Sep 17 00:00:00 2001 From: s416178 Date: Fri, 3 Apr 2020 15:26:08 +0200 Subject: [PATCH] Add notify --- Jenkinsfile_notify | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Jenkinsfile_notify 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' + } + } + } +}