Member-only story

A Step-by-Step Guide To Create Homebrew Taps From GitHub Repos

Shinichi Okada
Better Programming
Published in
5 min readMay 26, 2021
A ruby file for Homebrew tap.
A ruby file for Homebrew tap. Image by Author.

Introduction

Step 1: Git Tag

$ git tag -a v0.0.2 -m "version 0.2.0"
$ git push origin v0.2.0

Step 2. Create a New Release

Creating a release.
Creating a release. Image by Author.

Step 3. Run Brew Create

Copy Link Address from source code (tar.gz).
Copy Link Address from Source code (tar.gz). Image by Author.
$ brew create --tap shinokada/gitstart https://github.com/shinokada/gitstart/archive/refs/tags/0.2.0.tar.gz
The output after running the brew create command. Image by Author.
The output after running the brew create command. Image by Author.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Shinichi Okada
Shinichi Okada

Written by Shinichi Okada

A programmer and technology enthusiast with a passion for sharing my knowledge and experience. https://codewithshin.com

Responses (2)

Write a response