Fetch release branches before bumping zed minor versions

Max Brunsfeld created

Change summary

script/bump-zed-minor-versions | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)

Detailed changes

script/bump-zed-minor-versions 🔗

@@ -15,8 +15,6 @@ if [[ $(git rev-parse --abbrev-ref HEAD) != "main" ]]; then
   exit 1
 fi
 git pull -q --ff-only origin main
-git fetch --tags
-cargo check -q
 
 # Parse the current version
 version=$(script/get-crate-version zed)
@@ -31,6 +29,10 @@ prev_minor_branch_name="v${major}.${prev_minor}.x"
 next_minor_branch_name="v${major}.${next_minor}.x"
 preview_tag_name="v${major}.${minor}.${patch}-pre"
 
+git fetch origin ${prev_minor_branch_name}:${prev_minor_branch_name}
+git fetch origin --tags
+cargo check -q
+
 function cleanup {
   git checkout -q main
 }