From 98df0926cb41fdbef8d7cf782170368970d335dd Mon Sep 17 00:00:00 2001 From: Muneeb Nezameddin <39063206+MNezameddin@users.noreply.github.com> Date: Mon, 16 Mar 2020 03:00:01 -0400 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 901539b25..e108ba49c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,20 +18,20 @@ pipeline { } stage('Deploy') { steps { - bat './mvnw deploy:deploy-file' + echo 'Deploy' } } } post { success { mail to: 'mnezam.31@gmail.com', - subject: "Successful Pipeline: ${currentBuild.fullDisplayName}", + subject: "Successful Pipeline", body: "Your tests worked accordingly!" } failure { mail to: 'mnezam.31@gmail.com', - subject: "Failed Pipeline: ${currentBuild.fullDisplayName}", - body: "Something is wrong with ${env.BUILD_URL}" + subject: "Failed Pipeline}", + body: "Something is wrong" } } }