Skip to content

Commit

Permalink
Add homebrew bump workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
camerondurham committed Aug 14, 2022
1 parent 631f961 commit b11dd28
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/homebrew_bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Homebrew Bump Formula
on:
workflow_dispatch:
inputs:
version:
required: true
description: "ch release version"
sha:
required: true
description: "ch release git SHA"

jobs:
homebrew:
name: Bump Homebrew formula
runs-on: macos-latest
steps:
- uses: dawidd6/action-homebrew-bump-formula@v3
with:
token: ${{ secrets.BUILDBOT_GITHUB_TOKEN }}
formula: ch
org: camerondurham
tag: ${{ github.event.inputs.version }}
revision: ${{ github.event.inputs.sha }}

0 comments on commit b11dd28

Please sign in to comment.