fix(release): use tag source mode to match the custard release CLI
0f81662563d1f6fd1bdb569986a8b6f049afe581
Kevin Kortum <kevinkortum@me.com> · 2026-07-08 08:11
parent ed44c45f
fix(release): use tag source mode to match the custard release CLI The custard release CLI always pushes a git tag; the server only publishes a tag in tag source mode. The prior bookmark mode made the server skip tag pushes, so 'custard release v0.0.1' tagged but wrote no tap formula. Switch to source: tag. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Pc56rzYZo9TjJgXN951Psk
1 files changed
.custard.yaml +1 −3
@@ -5,6 +5,4 @@ - go test ./...
brew:
enabled: true
package: ./cmd/ticktock # main lives under cmd/ticktock; binary is `tt`
- source: bookmark # jj-native: release ref = release/vX.Y.Z bookmark (jj git push -b),
- # not a git tag — bookmarks push natively over jj.
- bookmark_prefix: "release/"
+ source: tag # `custard release vX.Y.Z` tags + pushes; the forge publishes from the tag