1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-08 12:39:19 +00:00
Files
Mole/.github/workflows/homebrew.yml
Tw93 0b676df02c Improve Homebrew installation and automation
- Simplify Homebrew install to single command: brew install tw93/tap/clean-mac
- Add GitHub Action for automatic formula updates on release
- Remove need for separate tap command

Features:
- One-command Homebrew installation
- Automatic formula updates on new releases
- Streamlined user experience
2025-09-23 14:53:31 +08:00

21 lines
511 B
YAML

name: Update Homebrew Formula
on:
release:
types: [published]
jobs:
homebrew:
runs-on: ubuntu-latest
steps:
- name: Update Homebrew formula
uses: dawidd6/action-homebrew-bump-formula@v3
with:
token: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
formula: clean-mac
tap: tw93/homebrew-tap
create_pullrequest: true
commit_message: |
Update clean-mac to {{version}}
Created by action-homebrew-bump-formula