From b11dd28b02773e106792dc0a577114cf767bb9f5 Mon Sep 17 00:00:00 2001 From: cam Date: Sat, 13 Aug 2022 23:44:40 -0700 Subject: [PATCH] Add homebrew bump workflow --- .github/workflows/homebrew_bump.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/homebrew_bump.yml diff --git a/.github/workflows/homebrew_bump.yml b/.github/workflows/homebrew_bump.yml new file mode 100644 index 0000000..da7705c --- /dev/null +++ b/.github/workflows/homebrew_bump.yml @@ -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 }}