Files
hapi/cli/.release-it.json
T
weishu 90cb7dae05 feat: add Homebrew installation support for hapi CLI
- Update CI workflow to package release artifacts with correct naming (hapi-* prefix)
- Generate SHA256 checksums for all artifacts
- Auto-update homebrew-tap repository on release
- Add Installation section to README with Homebrew, npm, and binary options
- Simplify .release-it.json config as CI now handles release process
- Add update-homebrew-formula script to update formula in homebrew-tap
- Add release-artifacts directory to .gitignore

Users can now install via: brew install tiann/tap/hapi
2025-12-25 10:23:16 +08:00

18 lines
352 B
JSON

{
"git": {
"commitMessage": "Release version ${version}",
"tagName": "v${version}",
"push": true,
"requireCleanWorkingDir": true,
"requireBranch": "main",
"addUntrackedFiles": false
},
"github": {
"release": false
},
"npm": {
"publish": false
},
"hooks": {}
}