From 60aa825dd0bbe96e2d43a0267d34e605d1bb543c Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Fri, 10 Aug 2018 08:15:48 +0200 Subject: [PATCH] Adds two log lines to validate what and when tags are pushed --- release.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release.groovy b/release.groovy index 926628c7..85dc4ab2 100644 --- a/release.groovy +++ b/release.groovy @@ -9,6 +9,7 @@ def tagDownstreamRepos() { newVersion = getJenkinsVersion() container(name: 'clients') { + println "Pushing Pipeline Library tag ${newVersion}" flow.pushTag(newVersion) } @@ -25,6 +26,7 @@ def tagDownstreamRepos() { sh "git commit -a -m 'Updated Jenkinsfiles with new library version ${newVersion}'" + println "Pushing Jenkinsfile Library tag ${newVersion}" flow.pushTag(newVersion) }