This is an automated email from the ASF dual-hosted git repository.

tzimanyi pushed a commit to branch main
in repository 
https://gitbox.apache.org/repos/asf/incubator-kie-kogito-pipelines.git


The following commit(s) were added to refs/heads/main by this push:
     new 8718cd51 kie-issues#586: handle ENABLE_DEPLOY env as boolean (#1096)
8718cd51 is described below

commit 8718cd516044cbcb39d94e8d6da8f34c97fb4ab8
Author: Jan Stastny <[email protected]>
AuthorDate: Fri Sep 22 14:30:52 2023 +0200

    kie-issues#586: handle ENABLE_DEPLOY env as boolean (#1096)
    
    Co-authored-by: jstastny-cz <[email protected]>
---
 dsl/seed/jenkinsfiles/Jenkinsfile.buildchain | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dsl/seed/jenkinsfiles/Jenkinsfile.buildchain 
b/dsl/seed/jenkinsfiles/Jenkinsfile.buildchain
index dc658eac..6725a919 100644
--- a/dsl/seed/jenkinsfiles/Jenkinsfile.buildchain
+++ b/dsl/seed/jenkinsfiles/Jenkinsfile.buildchain
@@ -9,7 +9,7 @@ jdkTool = env.BUILD_JDK_TOOL
 sonarJdkTool = env.SONAR_JDK_TOOL
 mavenTool = env.BUILD_MAVEN_TOOL
 
-mavenDeployArtifacts = env.ENABLE_DEPLOY
+mavenDeployArtifacts = Boolean.valueof(env.ENABLE_DEPLOY)
 mavenDeployRepository = env.MAVEN_DEPLOY_REPOSITORY ?: ''
 mavenDeployRepositoryCredsId = env.MAVEN_DEPLOY_REPOSITORY_CREDS_ID ?: ''
 mavenDeployLocalDir = env.MAVEN_DEPLOY_LOCAL_DIR ?: ''


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to