Skip to content

Commit

Permalink
Fix homebrew bump
Browse files Browse the repository at this point in the history
  • Loading branch information
samtay committed Aug 23, 2024
1 parent 4b0cb25 commit 88d2416
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/bump_brew_formula.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,23 @@ name: Release to homebrew core

on:
push:
tags: 'v*'
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/bump-homebrew-formula-action@v1
- uses: mislav/bump-homebrew-formula-action@v3.1
with:
tag-name: ${{ github.event.inputs.tag || github.ref_name }}
formula-name: so
env:
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}

0 comments on commit 88d2416

Please sign in to comment.