Publish changelog and release notes using Gren.
Configure Gren usign .grenrc in your repository and run this action in GitHub actions workflow:
name: Release notes
on: [release]
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: lakto/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
options: '--override --prerelease'In options you can add all options from Gren itself except of --username, --repo and --token. They are already part of the lakto/gren-action entrypoint script.