Release 0.73.0-jh
Prep stable branch changes
-
Create 0-73-stable-jh # findout the merge base of branch "origin/0-73-stable" and "origin/main" BASE=$(git merge-base origin/0-73-stable origin/main | tr -d '\n') # merge the above "merge base" into out branch "main-jh" git checkout main-jh && git pull && git merge ${BASE} -m "Merge base-point of 0-73-stable and main into main-jh" # create branch "0-73-stable-jh" from branch "main-jh" git checkout -b 0-73-stable-jh -
Pick the below new required JH changes from main-jhinto0-73-stable-jhif neededPICK COMMIT OR MR
-
Merge from v0.73.0to make sure all commits are passing CIgit merge v0.73.0 -m "Version v0.73.0-jh"- Resolve conflicts if any.
-
Push the branch to the canonicalremote to run test jobsgit push origin 0-73-stable-jh:0-73-stable-jhgit push origin main-jh:main-jh
After release is finalized and tagged
-
Tag v0.73.0-jhfrom0-73-stable-jhgit tag -a v0.73.0-jh -m "Version v0.73.0-jh"
-
Push the tag to the canonicalremotegit push origin v0.73.0-jh
-
Trigger the release stablejob manually and check if it succeeds.
由 Kang Liu 编辑于