You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Release a Changelog
v1.0.1
This GitHub action creates a release based on your CHANGELOG.md
file.
You must use Keep a Changelog format or this will not work.
Add the following to a new .github/workflows/release_a_changelog.yml
file (or as part of your existing workflow):
name: Release a Changelog
on:
push:
branches:
- master
jobs:
release_a_changelog:
name: Release a Changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Release a Changelog
uses: rasmus-saks/[email protected]
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
⚠️ Make sure you have acheckout
action beforerelease-a-changelog
, otherwise it won't be able to read yourCHANGELOG.md
file
- Add a new version to
CHANGELOG.md
according to Keep a Changelog - Push/merge to master
- ???
- Profit