Skip to content

Commit

Permalink
Fix some minor issues with the release script
Browse files Browse the repository at this point in the history
  • Loading branch information
cassava committed Mar 23, 2024
1 parent f902d0a commit eb0aa50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,12 @@ infof "Commit changes ($package_dir)"
infof "Create new tag"
git tag -a v${release_version} -m "repoctl version ${release_version} release"
echo "Unpushed commits:\n"
git log --oneline --color=always $main_branch..origin/$main_branch | sed -r 's/^/\t/'
git log --oneline --color=always origin/$main_branch..$main_branch | sed -r 's/^/\t/'
echo
confirm "Push $main_branch branch?"
confirm "Push $main_branch branch?" || exit 2
git push
confirm "Push v${release_version} tag?"
git push v${release_version}
confirm "Push v${release_version} tag?" || exit 2
git push origin v${release_version}

# Step 8:
infof "Create new Github release"
Expand Down

0 comments on commit eb0aa50

Please sign in to comment.