diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index fed3302..8284310 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,3 @@ -name-template: "$VERSION" -tag-template: "$VERSION" categories: - title: "🚀 Features" labels: @@ -15,6 +13,6 @@ categories: change-template: "- $TITLE @$AUTHOR (#$NUMBER)" change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. template: | - ## Changes to $REPOSITORY for $VERSION + ## Changes to $REPOSITORY $CHANGES diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 222340d..594aa59 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,5 +23,7 @@ jobs: with: config-name: release-drafter.yml version: ${{ steps.version.outputs.RELEASE_VERSION }} + name: ${{ steps.version.outputs.RELEASE_VERSION }} + tag: ${{ steps.version.outputs.RELEASE_VERSION }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}