From 7d1b01e62f6adc487eb8ad5de85107c353692ed6 Mon Sep 17 00:00:00 2001 From: Niclas Thobaben Date: Sun, 14 Aug 2022 12:35:12 +0200 Subject: [PATCH] test --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 85d7898..41cdd92 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { stage('TEST') { steps { script { - CUSTOM_TAG = sh(returnStdout: true, script: "git tag --contains").trim() + env.CUSTOM_TAG = sh(returnStdout: true, script: "git tag --contains").trim() } echo sh(script: 'env|sort', returnStdout: true) }