diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 9a22885..0969be4 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -95,7 +95,11 @@ jobs: VERSION=${GITHUB_REF#refs/tags/} # Get the tag message + echo "Fetching tag message for ${VERSION}" + git tag -l ${VERSION} + git show ${VERSION} --format=%B --no-patch TAG_MESSAGE=$(git tag -l --format='%(contents)' ${VERSION}) + echo "Tag message: ${TAG_MESSAGE}" # Create release body RELEASE_BODY=$(printf "%s\n\n## Downloads\n\n### Linux\n- **AppImage**: Portable, single-file executable (no installation needed)\n- **Tarball**: Extract and run \`sudo ./install.sh\` to install\n\n### Windows\n- **Zip**: Extract and run \`NotePad.exe\`" "$TAG_MESSAGE")