From 69c45084bf63279f47d49697dc5c560d6b83eb0d Mon Sep 17 00:00:00 2001 From: Daniel Rahamim Date: Sat, 18 Feb 2023 15:09:47 -0800 Subject: [PATCH] ci: add full changelog link to releases --- .github/workflows/build_packages.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build_packages.yml b/.github/workflows/build_packages.yml index a321a64..bef1815 100755 --- a/.github/workflows/build_packages.yml +++ b/.github/workflows/build_packages.yml @@ -31,6 +31,9 @@ jobs: pip install setuptools wheel build - name: Build package run: python -m build --wheel -s + - name: Get Previous tag + id: previoustag + uses: WyriHaximus/github-action-get-previous-tag@v1.3.0 - name: Changelog uses: Bullrich/generate-release-changelog@master id: Changelog @@ -42,6 +45,7 @@ jobs: tag_name: ${{ steps.get-latest-tag.outputs.tag }} body: | ${{ steps.Changelog.outputs.changelog }} + https://github.com/org/repo/compare/${{ steps.previoustag.outputs.tag }}...${{ steps.get-latest-tag.outputs.tag }} files: | dist/*.whl dist/*.tar.gz