ci: keep typhon telemetry runs image-free

This commit is contained in:
Brad Stein 2026-05-16 17:22:37 -03:00
parent 953e90a3e5
commit aad640f059

4
Jenkinsfile vendored
View File

@ -7,7 +7,7 @@ def isScmBuild() {
}
def shouldPublishImage() {
return params.PUBLISH_IMAGE || (!isTimerBuild() && isScmBuild())
return params.PUBLISH_IMAGE
}
pipeline {
@ -21,7 +21,7 @@ pipeline {
booleanParam(
name: 'PUBLISH_IMAGE',
defaultValue: false,
description: 'Build and push typhon image to Harbor; main branch SCM builds also publish automatically.'
description: 'Build and push the Typhon image to Harbor. Regular SCM and timer runs only publish test telemetry.'
)
}