diff --git a/.github/workflows/post-release-merge.yml b/.github/workflows/post-release-merge.yml index 7dc311a..a6fd092 100644 --- a/.github/workflows/post-release-merge.yml +++ b/.github/workflows/post-release-merge.yml @@ -23,4 +23,12 @@ jobs: run: | git tag $RELEASE_VERSION git push origin $RELEASE_VERSION + - name: Record changelog for current release + run: cz changelog $RELEASE_VERSION --file-name="release.md" + - name: Create release + uses: ncipollo/release-action@v1 + with: + name: "Release ${{ env.RELEASE_VERSION }}" + tag: ${{ env.RELEASE_VERSION }} + bodyFile: "release.md"