You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/08/01 05:09:40 UTC

[camel] branch camel-3.14.x updated: CI deploy task should execute for main and LTS branches

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

davsclaus pushed a commit to branch camel-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.14.x by this push:
     new 64c82aaf94d CI deploy task should execute for main and LTS branches
64c82aaf94d is described below

commit 64c82aaf94d4312d0778cf8a13dd2f84ae460cb1
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Aug 1 07:08:34 2022 +0200

    CI deploy task should execute for main and LTS branches
---
 Jenkinsfile.deploy | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile.deploy b/Jenkinsfile.deploy
index 7ed9492f66b..391d30e0bb2 100644
--- a/Jenkinsfile.deploy
+++ b/Jenkinsfile.deploy
@@ -60,7 +60,11 @@ pipeline {
 
         stage('Build & Deploy') {
             when {
-                branch 'main'
+                anyOf {
+                    branch 'main'
+                    branch 'camel-3.18.x'
+                    branch 'camel-3.14.x'
+                }
             }
             steps {
                 sh "./mvnw $MAVEN_PARAMS -Pdeploy -Dmaven.test.skip.exec=true clean deploy"