Skip to content

tests: Make Reader.convert public so that plugins can use this to wri… #39

tests: Make Reader.convert public so that plugins can use this to wri…

tests: Make Reader.convert public so that plugins can use this to wri… #39

Workflow file for this run

name: Create Release
on:
push:
tags:
- "*"
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create changelog text
id: changelog
uses: loopwerk/tag-changelog@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
exclude_types: other,doc,chore,build
- name: Create release
uses: softprops/action-gh-release@v2
with:
body: ${{ steps.changelog.outputs.changes }}
token: ${{ secrets.GITHUB_TOKEN }}