From 97305d66296793973fbfff081893e54fbb3c9b35 Mon Sep 17 00:00:00 2001 From: Christopher Hubing Date: Fri, 19 Apr 2019 16:05:30 -0400 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3179700..95252ce 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -145,10 +145,10 @@ def generateTagSet() { exceriseSets.each{ course, stepCountPerExercise -> stepCountPerExercise.eachWithIndex {stepCount, exIndex -> for (int step = 0; step < stepCount; step++) { - tagSet.add("${course}.${exIndex+1}.${step+1}") + tagSet.add("${course}.${exIndex+1}.${step+1}-${tag}") } - tagSet.add("${course}.${exIndex+1}.end") + tagSet.add("${course}.${exIndex+1}.end-${tag}") } }