Automate homebrew release flow

This commit is contained in:
Rui Chen 2020-03-24 21:21:54 -04:00
parent 3e67eaa3b7
commit 62c80d76eb
No known key found for this signature in database
GPG Key ID: 15A594F673F803E8
1 changed files with 17 additions and 0 deletions

17
.github/workflows/homebrew.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: homebrew
on:
push:
tags: '*'
jobs:
homebrew:
name: Bump Homebrew formula
runs-on: ubuntu-latest
steps:
- uses: mislav/bump-homebrew-formula-action@v1
with:
# A PR will be sent to github.com/Homebrew/homebrew-core to update this formula:
formula-name: cheat
env:
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}