Compare commits

...

3 Commits
v60 ... v64

Author SHA1 Message Date
Michael Otto
a58f6255fc Anpassungen für Releasemeldung 2026-03-03 14:09:39 +01:00
Michael Otto
78ffc6d6d2 Diverses 2026-03-03 14:02:32 +01:00
Michael Otto
00785eeabd Release v61 2026-03-03 13:58:12 +01:00
3 changed files with 15 additions and 10 deletions

View File

@@ -64,17 +64,19 @@ jobs:
cd repo
# Aktueller Block = alles vor dem ersten ---
CURRENT=$(sed '/^---/Q' changelog.txt)
CURRENT=$(awk '/^---/{exit} {print}' changelog.txt)
# Vollständige Historie für Gitea Release Body
# Aktuelle Version aus Tag voranstellen
# Vollständige Historie = alles nach dem ersten ---
HISTORY=$(awk 'found{print} /^---/{found=1}' changelog.txt)
# Gitea Release Body zusammenbauen
VERSION="${{ steps.releaseinfo.outputs.version }}"
FULL=$(printf "## %s\n%s\n\n%s" \
"$VERSION" \
"$CURRENT" \
"$(sed '1,/^---/d' changelog.txt)")
FULL=$(printf "## %s\n%s\n\n%s" "$VERSION" "$CURRENT" "$HISTORY")
# Für GITHUB_OUTPUT: Newlines escapen
echo "DEBUG | Aktueller Changelog:"
echo "$CURRENT"
# Für GITHUB_OUTPUT: Multiline via EOF-Marker
echo "current<<EOF" >> $GITHUB_OUTPUT
echo "$CURRENT" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
@@ -147,7 +149,7 @@ jobs:
JSON=$(jq -n \
--arg tag "$TAG" \
--arg name "Version $VERSION" \
--arg body "${{ steps.changelog.outputs.full }}" \
--arg body "${{ steps.changelog.outputs.current }}" \
'{tag_name: $tag, name: $name, body: $body, draft: false, prerelease: false}')
API_RESPONSE=$(curl -s -X POST "$API_URL" \

View File

@@ -1,3 +1,6 @@
- Ganz viele neue Sachen
---
61
- Feature XY hinzugefügt
- Bug Z behoben
0.1.0

View File

@@ -11,4 +11,4 @@ tracker=https://{{TRACKER}}/issues
repository=https://{{REPOSITORY}}
experimental={{EXPERIMENTAL}}
deprecated={{DEPRECATED}}
supportsQt6={{QT6}}
supportsQt6={{QT6}}