From 83d19d6fcc91e2b17d7d81d47c6f09f112d4a59c Mon Sep 17 00:00:00 2001 From: "jack.burridge" Date: Wed, 28 Jan 2026 23:48:38 +0000 Subject: [PATCH] ci: publish github release notes from commitizen --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a70e65c..822b00e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,3 +36,9 @@ jobs: uv run cz bump git push git push --tags + uv run cz changelog "${{ env.version }}" --dry-run > body.md + - name: Create Release + if: env.version != '' + env: + GH_TOKEN: ${{ steps.app-token.outputs.token }} + run: gh release create "${{ env.version }}" --notes-file body.md