From aad640f059e7dd8aa4bd04e335512922827e1171 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sat, 16 May 2026 17:22:37 -0300 Subject: [PATCH] ci: keep typhon telemetry runs image-free --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8c8b420..cc43b41 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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.' ) }