plaground-sandbox/Jenkinsfile

16 lines
251 B
Plaintext
Raw Normal View History

2022-08-14 12:25:47 +02:00
pipeline {
agent any
environment {
CUSTOM_TAG = sh(returnStdout: true, script: "git tag --contains").trim()
}
stages {
stage('TEST') {
steps {
sh 'printenv'
}
}
}
}