NO-JIRA: update release steps to around updating examples

Note to check out the development branch before running the update script, to get updates to the scripts
This commit is contained in:
Robbie Gemmell 2024-02-01 12:21:33 +00:00
parent f258b27eb4
commit 6f6b3e70a3
1 changed files with 3 additions and 1 deletions

View File

@ -339,12 +339,13 @@ Once pushed, the changes should be published automatically by the `jekyll_websit
The [examples repo](https://github.com/apache/activemq-artemis-examples) should be updated to reflect the new release and development versions. The [examples repo](https://github.com/apache/activemq-artemis-examples) should be updated to reflect the new release and development versions.
Take a fresh clone of the repo and run the provided script, then check the results and push. Take a fresh clone of the repo, check out the development branch, and run the provided script, then check the results and push.
``` ```
git clone https://gitbox.apache.org/repos/asf/activemq-artemis-examples.git git clone https://gitbox.apache.org/repos/asf/activemq-artemis-examples.git
cd activemq-artemis-examples cd activemq-artemis-examples
git checkout development
./scripts/release/update-branch-versions.sh <release-version> <new-main-snapshot-version>" ./scripts/release/update-branch-versions.sh <release-version> <new-main-snapshot-version>"
``` ```
@ -353,6 +354,7 @@ Example from the 2.32.0 release:
git clone https://gitbox.apache.org/repos/asf/activemq-artemis-examples.git git clone https://gitbox.apache.org/repos/asf/activemq-artemis-examples.git
cd activemq-artemis-examples cd activemq-artemis-examples
git checkout development
./scripts/release/update-branch-versions.sh 2.32.0 2.33.0-SNAPSHOT" ./scripts/release/update-branch-versions.sh 2.32.0 2.33.0-SNAPSHOT"
``` ```