This is an automated email from the ASF dual-hosted git repository.
jstastnycz pushed a commit to branch 10.0.x
in repository
https://gitbox.apache.org/repos/asf/incubator-kie-kogito-images.git
The following commit(s) were added to refs/heads/10.0.x by this push:
new ad288823 [10.0.x] NO-ISSUE: fix env.DISABLE_IMAGES_DEPLOY evaluation
(#1787)
ad288823 is described below
commit ad288823dd82b4a4e02c54ef5e938eb09920abb9
Author: Jan Stastny <[email protected]>
AuthorDate: Thu Jul 25 09:30:55 2024 +0200
[10.0.x] NO-ISSUE: fix env.DISABLE_IMAGES_DEPLOY evaluation (#1787)
Co-authored-by: jstastny-cz <[email protected]>
---
.ci/jenkins/Jenkinsfile.deploy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy
index b367bd38..a6e20a77 100644
--- a/.ci/jenkins/Jenkinsfile.deploy
+++ b/.ci/jenkins/Jenkinsfile.deploy
@@ -363,7 +363,7 @@ List getTestFailedImages() {
////////////////////////////////////////////////////////////////////////
boolean isDeployImage() {
- return !env.DISABLE_IMAGES_DEPLOY
+ return !Boolean.valueOf(env.DISABLE_IMAGES_DEPLOY)
}
boolean isDeployImageInOpenshiftRegistry() {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]