develop
Niclas Thobaben 2022-08-14 12:35:45 +02:00
parent 7d1b01e62f
commit 96364b5664
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -10,9 +10,10 @@ pipeline {
stage('TEST') {
steps {
script {
env.CUSTOM_TAG = sh(returnStdout: true, script: "git tag --contains").trim()
CUSTOM_TAG = sh(returnStdout: true, script: "git tag --contains").trim()
}
echo sh(script: 'env|sort', returnStdout: true)
echo "${CUSTOM_TAG}"
}
}
}