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:17 UTC

[camel] branch camel-3.18.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.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git


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

commit f1a7dcaa72c470ae8c20e470674d492c9d7faf99
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 b208535f3e2..b4d6e3a24da 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"