diff --git a/Jenkinsfile b/Jenkinsfile index 02c6b55..2e9ddf2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,6 +31,7 @@ pipeline { steps { script { def hasTags = sh(script: "git tag -l | wc -l", returnStdout: true).trim().toInteger() > 0 + echo "${hasTags}" if (hasTags) { def lastVersion = sh(script: "git describe --tags --abbrev=0", returnStdout: true).trim() }