develop
Niclas Thobaben 2022-08-14 12:54:29 +02:00
parent b064c2f6f2
commit 3110b434a2
1 changed files with 6 additions and 0 deletions

6
Jenkinsfile vendored
View File

@ -12,5 +12,11 @@ pipeline {
echo "${CUSTOM_TAG}"
}
}
stage('ONLY ON TAG') {
when { buildingTag() }
steps {
echo "I run only because I am on tag ${CUSTOM_TAG}"
}
}
}
}