Create Brew Tap - Because You're Not Cool Enough to be in the Official Brew Club
- create a new repository called
homebrew-tap-your_app
- run
git init
and put the empty repository in Github - create a new branch and run
brew create --tap=USER/REPO --go https://github.com/user/repo/archive/vA.I.P.tar.gz
(where A is Major, I is Minor and P is Patch version... obviously😜 ) to create a new pre-gen formula in your empty project. - Make sure the
url
in the pre-gen formula looks likehttps://github.com/user/repo/archive/refs/tags/vA.I.P.tar.gz
- If
brew create
doesn't already, copy thesha256
that gets stuck in your terminal output in the field forsha256
- push that shit and open a PR
- AFTER those are done, add the
pr-pull
label and wait for that action to run - this will add the bottles specified in the test-bot action intests.yml
(you don't have to update those SHAs on your own... dont panic) - If it didn't blow up, you're donezo!