Fix tagging during publishing

This commit is contained in:
Max Isom 2021-12-18 12:07:37 -06:00
parent 3db8b4cc1d
commit 86605f76a5
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880

View file

@ -27,8 +27,8 @@ jobs:
- name: Create/update release
uses: ncipollo/release-action@v1
with:
tag: ${GITHUB_REF#refs/tags}
name: Release ${{ steps.changelog_reader.outputs.version }}
tag: v${{ steps.changelog_reader.outputs.version }}
name: Release v${{ steps.changelog_reader.outputs.version }}
body: ${{ steps.changelog_reader.outputs.changes }}
prerelease: ${{ steps.changelog_reader.outputs.status == 'prereleased' }}
draft: ${{ steps.changelog_reader.outputs.status == 'unreleased' }}