feat: optimize changelog display
All checks were successful
🚀 Lint & Test & Deploy / release (push) Successful in 4m5s

- Hide releases under a Detail
- Hide all commits under a Detail
This commit is contained in:
release-bot
2026-02-08 19:04:56 +01:00
parent 979e9fd922
commit e44b73bebf
8 changed files with 438 additions and 144 deletions

View File

@@ -52,16 +52,15 @@ fi
# -------------------------------------------------------------------
tmp_changelog="CHANGELOG.tmp"
{
echo "## $TAG ($DATE)"
echo "# $TAG ($DATE)"
echo ""
echo "$NOTES"
echo ""
if [ -n "$COMMITS" ]; then
echo "### All Commits in this version:"
echo "---"
echo "$COMMITS"
echo ""
fi
echo "---"
echo ""
if [ -f CHANGELOG.md ]; then
cat CHANGELOG.md
@@ -87,5 +86,6 @@ else
git push origin main
fi
rm app/static/CHANGELOG.md
cp CHANGELOG.md app/static/CHANGELOG.md
echo "✅ Release process for $TAG complete"