Skip to content

fix: removed sha256 checksums from README #5

fix: removed sha256 checksums from README

fix: removed sha256 checksums from README #5

name: Update CHANGELOG
permissions:
contents: write
on:
push:
branches:
- main
jobs:
update-changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install git-cliff
uses: taiki-e/install-action@v2
with:
tool: git-cliff
- name: Generate/Update CHANGELOG.md
run: git cliff -o CHANGELOG.md
- name: Commit and push CHANGELOG.md
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add CHANGELOG.md
git commit -m "chore: update CHANGELOG [skip ci]" || echo "No changes to commit"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push if not on a tag
if: github.ref_type != 'tag'
run: git push origin HEAD