From 25626260c567000e5401fd80cb8516401fdd206b Mon Sep 17 00:00:00 2001 From: Alexey Raga Date: Mon, 5 Aug 2024 13:36:04 +1000 Subject: [PATCH] Add release notes --- .github/workflows/haskell.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 7a577ec..ecbbae7 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -163,6 +163,14 @@ jobs: fi done + - name: "Build Changelog" + id: build_changelog + uses: mikepenz/release-changelog-builder-action@v3 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + toTag: "{{ github.ref }}" + - name: Create Release id: create_release uses: actions/create-release@v1 @@ -171,6 +179,6 @@ jobs: with: tag_name: ${{ github.ref }} release_name: Release ${{ needs.check.outputs.tag }} - body: Undocumented + body: ${{ steps.build_changelog.outputs.changelog }} draft: true prerelease: false