From fb5a3ccceeba5418e9267a442efd95acb1da8f0e Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 25 Feb 2026 11:22:21 +0000 Subject: fix: populate GitHub release descriptions from CHANGELOG.md Add changelog input to create-gh-release-action so release bodies are extracted from CHANGELOG.md rather than left empty. Previously the gh CLI silently fell back to the annotated tag message, but newer versions send an explicit empty body, resulting in blank release descriptions. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github/workflows') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d311621..5d57e0b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: taiki-e/create-gh-release-action@v1 with: + changelog: CHANGELOG.md # (required) GitHub token for creating GitHub Releases. token: ${{ secrets.GITHUB_TOKEN }} -- cgit v1.2.3