Skip to content

Commit

Permalink
feat: add homebrew release task
Browse files Browse the repository at this point in the history
  • Loading branch information
linfan committed Jul 8, 2022
1 parent 3855a8e commit b4c057c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
tags:
- 'v*.*.*'
jobs:

release-cli:
name: Release packages
runs-on: ubuntu-latest
Expand Down Expand Up @@ -50,3 +49,12 @@ jobs:
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Update Homebrew formula
uses: dawidd6/action-homebrew-bump-formula@v3
with:
token: ${{secrets.GITHUB_TOKEN}}
formula: kt-connect
tag: ${{github.ref}}
revision: ${{github.sha}}
force: false

0 comments on commit b4c057c

Please sign in to comment.