From 40d0ec6abb94e427429ee18145949c548c60c1cc Mon Sep 17 00:00:00 2001 From: "William G. Thompson, Jr" <wgthom@gmail.com> Date: Sat, 20 Apr 2019 14:09:46 -0400 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e6a8828..50033c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -116,7 +116,7 @@ pipeline { stage('Notify') { steps{ echo "$maintainer" - slackSend color: 'good', message: "${maintainer}/${imagename} set pushed to DockerHub" + slackSend color: 'good', message: "${maintainer}/${imagename} version ${tag} pushed to DockerHub" } } } @@ -126,7 +126,7 @@ pipeline { } failure { // slackSend color: 'good', message: "Build failed" - handleError("BUILD ERROR: There was a problem building ${maintainer}/${imagename}:${tag}.") + handleError("BUILD ERROR: There was a problem building ${maintainer}/${imagename} version ${tag}.") } } }