You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ho...@apache.org on 2022/10/17 15:16:42 UTC

[solr] branch main updated: Fix ordering of antoraYaml generation in releaseWizard

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

houston pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new 99e82589eb1 Fix ordering of antoraYaml generation in releaseWizard
99e82589eb1 is described below

commit 99e82589eb10926ea1630565092a4200736fc1fb
Author: Houston Putman <ho...@apache.org>
AuthorDate: Mon Oct 17 11:15:35 2022 -0400

    Fix ordering of antoraYaml generation in releaseWizard
---
 dev-tools/scripts/releaseWizard.yaml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-tools/scripts/releaseWizard.yaml b/dev-tools/scripts/releaseWizard.yaml
index 7d09b4639e1..460a009545b 100644
--- a/dev-tools/scripts/releaseWizard.yaml
+++ b/dev-tools/scripts/releaseWizard.yaml
@@ -460,13 +460,13 @@ groups:
         cmd: git checkout main
         tee: true
       - !Command
-        cmd: "{{ gradle_cmd }} setOfficialAntoraYaml -Prefguide.isBranchReleased=false"
+        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }}
         tee: true
       - !Command
-        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }}
+        cmd: "{{ gradle_cmd }} setOfficialAntoraYaml -Prefguide.isBranchReleased=false"
         tee: true
       - !Command
-        comment: Make sure the edits done by `addVersion.py` are ok, then push
+        comment: Make sure the new antora.yaml and edits done by `addVersion.py` are ok, then push
         cmd: git add -u .  && git commit -m "Add next major version {{ next_version }}"  && git push
         logfile: commit-stable.log
     post_description: |
@@ -488,13 +488,13 @@ groups:
         cmd: git checkout {{ stable_branch }}
         tee: true
       - !Command
-        cmd: "{{ gradle_cmd }} setOfficialAntoraYaml -Prefguide.isBranchReleased=false"
+        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }}
         tee: true
       - !Command
-        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }}
+        cmd: "{{ gradle_cmd }} setOfficialAntoraYaml -Prefguide.isBranchReleased=false"
         tee: true
       - !Command
-        comment: Make sure the edits done by `addVersion.py` are ok, then push
+        comment: Make sure the new antora.yaml and edits done by `addVersion.py` are ok, then push
         cmd: git add -u .  && git commit -m "Add next minor version {{ next_version }}"  && git push
         logfile: commit-stable.log
       - !Command