Official Homebrew tap for GitHub Rock.
Your GitHub. Your style.
This repository is the distribution layer for GitHub Rock through Homebrew.
GitHub Rock is currently distributed as an Android application. A Homebrew Cask is not added until a supported macOS artifact (such as a signed and notarized .dmg or .zip) is published by GitHub Rock.
This avoids publishing a Homebrew package that downloads an Android APK but cannot be installed or launched as a native macOS application.
homebrew-github-rock/
├── Casks/
│ └── github-rock.rb # Added when a macOS release artifact is available
└── README.md
Once the macOS Cask is published:
brew tap Sayanthrock-Developer/github-rock
brew install --cask github-rockbrew update
brew upgrade --cask github-rockbrew uninstall --cask github-rock
brew untap Sayanthrock-Developer/github-rockBefore adding Casks/github-rock.rb, a GitHub Rock macOS release should provide:
- A stable version tag.
- A macOS
arm64artifact. - A macOS
x86_64artifact if Intel Macs are supported. - SHA-256 checksums for every architecture-specific artifact.
- A stable GitHub Releases download URL.
- App bundle metadata matching the cask name.
- Code signing and notarization where applicable.
- A release workflow that updates the Cask version and checksums without overwriting unrelated changes.
The final Cask should follow Homebrew conventions, including version, sha256, url, name, desc, homepage, livecheck, app, and appropriate uninstall/zap behavior.
Validate a future cask locally with:
brew audit --cask Casks/github-rock.rb
brew style Casks/github-rock.rb
brew install --cask --no-quarantine ./Casks/github-rock.rbDo not add placeholder URLs, fake versions, or unverifiable checksums.
Report Homebrew tap or packaging issues in this repository.
Report GitHub Rock application issues in the GitHub Rock issue tracker.