Conversation
Add auto-updating Homebrew formula via AlmogBaku/homebrew-tap repo. Release workflow now computes SHA256s for all platform binaries and pushes updated formula on each release. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Review Summary by QodoAdd Homebrew tap support for dap CLI
WalkthroughsDescription• Add Homebrew tap support with auto-updating formula on releases • Compute SHA256 checksums for all platform binaries (darwin/linux × amd64/arm64) • Update README and SKILL.md with Homebrew installation instructions • Implement robust error handling with set -euo pipefail in release workflow Diagramflowchart LR
Release["Release Workflow"] -- "triggers" --> Homebrew["Homebrew Job"]
Homebrew -- "downloads binaries" --> GitHub["GitHub Releases"]
Homebrew -- "computes SHA256" --> Checksums["Platform Checksums"]
Checksums -- "updates formula" --> TapRepo["homebrew-tap Repo"]
TapRepo -- "enables install" --> User["brew install AlmogBaku/tap/dap"]
File Changes1. .github/workflows/release.yml
|
Code Review by Qodo
1.
|
- continue-on-error so tap failure doesn't fail the release - validate v-prefixed tag format before generating formula Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
homebrewjob to release workflow that auto-updatesAlmogBaku/homebrew-tapformula on each releaseset -euo pipefail)Setup required
AlmogBaku/homebrew-tapwith Contents: write permissionHOMEBREW_TAP_TOKENin this repo's settingsInstall
Test plan
brew install AlmogBaku/tap/dapworks locally with current formuladap --versionshows correct version after installHOMEBREW_TAP_TOKENsecret is configuredhomebrewjob and updates the formula🤖 Generated with Claude Code