fix(ci): don't prepend the release with the word 'Release'
This commit is contained in:
parent
c1467d4dee
commit
14db5bfc99
|
|
@ -52,7 +52,7 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ github.ref_name }}
|
tag_name: ${{ github.ref_name }}
|
||||||
release_name: Release ${{ github.ref_name }}
|
release_name: ${{ github.ref_name }}
|
||||||
body: ${{ steps.changelog.outputs.CHANGELOG }}
|
body: ${{ steps.changelog.outputs.CHANGELOG }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: ${{ contains(github.ref_name, '-') }}
|
prerelease: ${{ contains(github.ref_name, '-') }}
|
||||||
Loading…
Reference in New Issue