From 23aa907644e866ceb80961cd4b28f88a8fd983e7 Mon Sep 17 00:00:00 2001 From: Adrian Macneil Date: Fri, 7 Aug 2020 13:45:35 -0700 Subject: [PATCH] Add Homebrew release action (#147) --- .github/workflows/release.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f544654 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +name: Release + +on: + push: + tags: 'v*' + +jobs: + homebrew: + name: Bump Homebrew formula + runs-on: ubuntu-latest + steps: + - uses: mislav/bump-homebrew-formula-action@v1 + with: + formula-name: dbmate + env: + COMMITTER_TOKEN: ${{ secrets.RELEASE_TOKEN }}