Skip to content

fix(ci): restore Homebrew tap update in release job #19

fix(ci): restore Homebrew tap update in release job

fix(ci): restore Homebrew tap update in release job #19

Workflow file for this run

name: Changelog
on:
push:
branches:
- main
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate CHANGELOG
run: |
git log --pretty=format:"- %s (%h)" HEAD~20..HEAD > CHANGELOG.md
- name: Commit CHANGELOG
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add CHANGELOG.md
git commit -m "docs: update CHANGELOG" || echo "No changes"