From 21c3a7c7c06dd926816c57210a86e8c33c0d5c95 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 15 Feb 2026 13:58:50 +0000 Subject: [PATCH] debugging the runner again --- .gitea/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) 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")