develop
Niclas Thobaben 2022-08-14 12:25:47 +02:00
parent 5685b1d2f9
commit e44a8253a2
1 changed files with 16 additions and 0 deletions

16
Jenkinsfile vendored 100644
View File

@ -0,0 +1,16 @@
pipeline {
agent any
environment {
CUSTOM_TAG = sh(returnStdout: true, script: "git tag --contains").trim()
}
stages {
stage('TEST') {
steps {
sh 'printenv'
}
}
}
}