Release to homebrew core #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release to homebrew core | |
on: | |
push: | |
tags: | |
- "v*" | |
workflow_dispatch: | |
inputs: | |
tag: | |
required: true | |
type: string | |
description: version to release to homebrew | |
jobs: | |
homebrew: | |
name: Bump Homebrew formula | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mislav/[email protected] | |
with: | |
tag-name: ${{ github.event.inputs.tag || github.ref_name }} | |
formula-name: so | |
env: | |
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }} |