We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a03c5 commit 9c6b13aCopy full SHA for 9c6b13a
.github/scripts/create_release.sh
@@ -14,7 +14,11 @@ if [ $VERSION = continuous ]; then
14
PRERELEASE=true
15
else
16
TITLE="UltraGrid $VERSION"
17
- SUMMARY="**Changes:**$(cat NEWS | sed -e '1,2d' -e '/^$/q' -e 's/^\*/\\n*/' | tr '\n' ' ')\n\n**Full changelog:** https://github.com/MartinPulec/UltraGrid/commits/$TAG"
+ FIXES=
18
+ if [ -f FIXES.md ]; then
19
+ FIXES="**Fixes since last release:**$(cat FIXES.md | sed -e 's/^\*/\\n*/' | tr '\n' ' ')\n\n"
20
+ fi
21
+ SUMMARY="**Changes:**$(cat NEWS | sed -e '1,2d' -e '/^$/q' -e 's/^\*/\\n*/' | tr '\n' ' ')\n\n$FIXES**Full changelog:** https://github.com/$GITHUB_REPOSITORY/commits/$TAG"
22
PRERELEASE=false
23
fi
24
0 commit comments