Skip to content

Commit

Permalink
Merge branch 'main' of github.com:jrnd-io/jr
Browse files Browse the repository at this point in the history
  • Loading branch information
ugol committed Aug 20, 2024
2 parents 691aed9 + a81768d commit 37634a2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/homebrew.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Update Homebrew formula

# trigger on creation of a new tag
on:
push:
tags:
- "v*"

jobs:
update-brew-formula:
runs-on: macos-latest

steps:
- name: Update Homebrew formula
uses: dawidd6/action-homebrew-bump-formula@v3
with:
# Required, custom GitHub access token with the 'public_repo' scope
token: ${{ secrets.HOMEBREW_TOKEN }}
# Optional, will create tap repo fork in organization
org: jrnd-io
# Formula name, required
formula: jr
# Optional, if don't want to check for already open PRs
force: false # true
# Optional, use the origin repository instead of forking
no_fork: false

0 comments on commit 37634a2

Please sign in to comment.