debugging the runner again

This commit is contained in:
Greg Gauthier 2026-02-15 13:58:50 +00:00
parent b0e2eda4bb
commit 21c3a7c7c0

View File

@ -95,7 +95,11 @@ jobs:
VERSION=${GITHUB_REF#refs/tags/} VERSION=${GITHUB_REF#refs/tags/}
# Get the tag message # 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}) TAG_MESSAGE=$(git tag -l --format='%(contents)' ${VERSION})
echo "Tag message: ${TAG_MESSAGE}"
# Create release body # 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") 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")