Skip to content

Commit

Permalink
added release automation for brew (#1227)
Browse files Browse the repository at this point in the history
  • Loading branch information
art-divin authored Nov 24, 2023
1 parent 1f727dd commit fbbf1be
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
workflow_dispatch:
inputs:
tag-name:
description: 'The git tag name to bump the formula to'
required: true

jobs:
homebrew:
name: Bump Homebrew formula
runs-on: macos-13
steps:
- uses: mislav/bump-homebrew-formula-action@v3
with:
formula-name: sourcery
tag-name: ${{ github.event.inputs.tag-name }}
env:
COMMITTER_TOKEN: ${{ secrets.HOMEBREW_COMMITTER_TOKEN }}

0 comments on commit fbbf1be

Please sign in to comment.