Fixed wrong file used for updating the release notes.

This commit is contained in:
Patrick Lehmann
2026-01-08 17:31:19 +01:00
parent be972d3c0e
commit 8f604de141
3 changed files with 9 additions and 9 deletions

View File

@@ -880,11 +880,11 @@ jobs:
export GH_TOKEN=${{ github.token }}
if [[ -s __ASSETS__.md ]]; then
addNotes=("--notes-file" "__ASSETS__.md")
if [[ -s __NOTES__.md ]]; then
addNotes=("--notes-file" "__NOTES__.md")
else
printf " ${ANSI_LIGHT_RED}File '%s' not found.${ANSI_NOCOLOR}\n" "__ASSETS__.md"
printf "::error title=%s::%s\n" "InternalError" "File '__ASSETS__.md' not found."
printf " ${ANSI_LIGHT_RED}File '%s' not found.${ANSI_NOCOLOR}\n" "__NOTES__.md"
printf "::error title=%s::%s\n" "InternalError" "File '__NOTES__.md' not found."
exit 1
fi