mirror of
https://github.com/openziti/zrok.git
synced 2024-11-23 08:33:52 +01:00
21 lines
486 B
YAML
21 lines
486 B
YAML
|
name: Homebrew Bump
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [released]
|
||
|
|
||
|
jobs:
|
||
|
update-brew:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Extract Version
|
||
|
id: extract-version
|
||
|
run: |
|
||
|
printf "::set-output name=%s::%s\n" tag-name "${GITHUB_REF#refs/tags/}"
|
||
|
- uses: mislav/bump-homebrew-formula-action@v2
|
||
|
if: "!contains(github.ref, '-')"
|
||
|
with:
|
||
|
formula-name: zrok
|
||
|
env:
|
||
|
COMMITTER_TOKEN: ${{ secrets.BREW_COMMITTER_TOKEN }}
|