Skip to content

Commit

Permalink
Fix title generation in CI publisher
Browse files Browse the repository at this point in the history
  • Loading branch information
hwittenborn committed Jul 3, 2023
1 parent 1921f20 commit e886538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: taiki-e/install-action@parse-changelog
- name: Create GitHub release
if: steps.needs-update.outputs.UPDATE == 'true'
run: gh release create "v${{ steps.local-version.outputs.VERSION }}" -n "$(parse-changelog CHANGELOG.md "${{ steps.local-version.outputs.VERSION }}")"
run: gh release create "v${{ steps.local-version.outputs.VERSION }}" -t "v${{ steps.local-version.outputs.VERSION }}" -n "$(parse-changelog CHANGELOG.md "${{ steps.local-version.outputs.VERSION }}")"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Publish to crates.io
Expand Down

0 comments on commit e886538

Please sign in to comment.