fixed documentation (#12)

Reviewed-on: lxcafe/lxcafe#12
This commit is contained in:
2026-03-15 12:18:42 +01:00
parent b1f7c675c6
commit 3a6537c7c0
+10 -14
View File
@@ -107,22 +107,18 @@ if question_answered_with_yes "Push release branch to origin?"; then
git push -u origin "$RELEASE_BRANCH" git push -u origin "$RELEASE_BRANCH"
echo "" echo ""
echo "Branch pushed to origin." echo "Branch pushed to origin."
echo ""
echo "Next steps:"
echo "1. Create a PR from $RELEASE_BRANCH to main"
echo " - Via web: Go to your git hosting and create a PR"
echo " - Or: gh pr create --base main --head $RELEASE_BRANCH"
echo ""
echo "2. After PR is merged, create a tag:"
echo " git checkout main && git pull"
echo " git tag -a $NEXT_VERSION_STR -m \"Release $NEXT_VERSION_STR\""
echo " git push origin $NEXT_VERSION_STR"
echo ""
echo "3. Gitea will create a release from the tag"
else else
echo "" echo ""
echo "Release prepared locally. Push manually with:" echo "Release prepared locally. Push manually with:"
echo " git push -u origin $RELEASE_BRANCH" echo " git push -u origin $RELEASE_BRANCH"
echo ""
echo "Then create a PR to main via your git hosting."
fi fi
echo ""
echo "Next steps:"
echo "1. Create a PR from $RELEASE_BRANCH to main in Gitea via web UI"
echo " - Via web: Go to your git hosting and create a PR"
echo " - Or: gh pr create --base main --head $RELEASE_BRANCH"
echo ""
echo "2. Execute script '02_finalise_release.sh' to create a tag in repo"
echo ""
echo "3. Create a release from the new tag in Gitea via web UI"