This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new 6152f1169e1 CI job for SB deploy should use LTS branches and not only
main
6152f1169e1 is described below
commit 6152f1169e1ea6c817238af0a8f6355546d007c4
Author: Claus Ibsen <[email protected]>
AuthorDate: Sun Jul 30 18:03:58 2023 +0200
CI job for SB deploy should use LTS branches and not only main
---
Jenkinsfile.sb.deploy | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile.sb.deploy b/Jenkinsfile.sb.deploy
index acd0f1a189c..f65ae10f7e8 100644
--- a/Jenkinsfile.sb.deploy
+++ b/Jenkinsfile.sb.deploy
@@ -54,7 +54,13 @@ pipeline {
stage('Build & Deploy') {
when {
- branch 'main'
+ anyOf {
+ branch 'main'
+ branch 'camel-spring-boot-3.x'
+ branch 'camel-spring-boot-3.21.x'
+ branch 'camel-spring-boot-3.20.x'
+ branch 'camel-spring-boot-3.14.x'
+ }
}
steps {
sh "./mvnw $MAVEN_PARAMS -Pdeploy -Dmaven.test.skip.exec=true
clean deploy"