build: add steps to sync and push release branch

This commit is contained in:
Phan An 2024-08-29 20:07:34 +02:00
parent b79bfb0472
commit 23d3ab04a9

7
tag.sh
View file

@ -20,4 +20,11 @@ git -c color.ui=always tag "$TAG"
git -c color.ui=always tag latest -f
git -c color.ui=always push --tags -f
# Update and push the release branch so that documentation is updated
echo "Update the release branch"
git -c color.ui=always checkout release
git -c color.ui=always pull
git -c color.ui=always merge master
git -c color.ui=always push
echo "${TAG} tagged. Now go to https://github.com/koel/koel/releases and finish the draft release."