19 lines
467 B
YAML
19 lines
467 B
YAML
name: Homebrew
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
repository_dispatch:
|
|
types: [release]
|
|
jobs:
|
|
homebrew:
|
|
name: Bump Homebrew formula
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: dawidd6/action-homebrew-bump-formula@v3.8.0
|
|
with:
|
|
# GitHub token, required, not the default one
|
|
token: ${{secrets.RELEASE_GITHUB_TOKEN}}
|
|
# Formula name, required
|
|
formula: sniffer
|
|
tag: ${{ github.event.client_payload.ref }}
|