Skip to content

Commit

Permalink
[10.0.x] NO-ISSUE: fix env.DISABLE_IMAGES_DEPLOY evaluation (#1787)
Browse files Browse the repository at this point in the history
Co-authored-by: jstastny-cz <[email protected]>
  • Loading branch information
jstastny-cz and jstastny-cz committed Jul 25, 2024
1 parent eb9ae49 commit ad28882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ List getTestFailedImages() {
////////////////////////////////////////////////////////////////////////

boolean isDeployImage() {
return !env.DISABLE_IMAGES_DEPLOY
return !Boolean.valueOf(env.DISABLE_IMAGES_DEPLOY)
}

boolean isDeployImageInOpenshiftRegistry() {
Expand Down

0 comments on commit ad28882

Please sign in to comment.