You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2023/10/02 14:55:25 UTC

[camel-quarkus] branch main updated: generalize kubernetes version label updates to all examples in release procedure (#5394)

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

aldettinger pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 828bbd9024 generalize kubernetes version label updates to all examples in release procedure (#5394)
828bbd9024 is described below

commit 828bbd90247d1bd8aba789eef8e8ff879ccbc27b
Author: Alexandre Gallice <al...@gmail.com>
AuthorDate: Mon Oct 2 16:55:20 2023 +0200

    generalize kubernetes version label updates to all examples in release procedure (#5394)
---
 docs/modules/ROOT/pages/contributor-guide/release-guide.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc b/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
index 513e8ba06e..9ad3af4cdb 100644
--- a/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
+++ b/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
@@ -369,7 +369,7 @@ $ git fetch upstream
 $ git reset --hard upstream/main
 $ ./mvnw-for-each.sh versions:set -DnewVersion=$NEW_CQ_VERSION
 # Update version labels in Kubernetes resources
-$ ./mvnw process-sources -f file-bindy-ftp/pom.xml
+$ ./mvnw-for-each.sh process-sources
 $ git add -A
 $ git commit -m "Tag $NEW_CQ_VERSION"
 $ git tag $NEW_CQ_VERSION
@@ -390,7 +390,7 @@ $ git checkout camel-quarkus-main
 $ git reset --hard main
 $ ./mvnw org.l2x6.cq:cq-maven-plugin:2.10.0:examples-set-platform -Dcq.camel-quarkus.version=${NEXT_CQ_VERSION}-SNAPSHOT -Dcq.newVersion=${NEXT_CQ_VERSION}-SNAPSHOT
 # Update version labels in Kubernetes resources
-$ ./mvnw process-sources -f file-bindy-ftp/pom.xml
+$ ./mvnw-for-each.sh process-sources
 $ git add -A
 $ git commit -m "Next is $NEXT_CQ_VERSION"
 $ git push upstream camel-quarkus-main --force-with-lease