brew: switch Formula + release workflow to forgejo source URLs #79
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Per-repo Formula
url/head/homepageand the release workflow's Formula-rewrite step all point atgithub.com/coilysiren/coily. Forgejo is canonical for coilysiren source now (decision made in chat 2026-05-24).Change
Formula/coily.rb:url+head+homepageswitched tohttps://forgejo.coilysiren.me/coilysiren/coily(.git). Scheme is HTTPS (not SSH) since forgejo's deployed posture is HTTPS-only git (see infrastructure/docs/forgejo-deploy-plan.md:19)..github/workflows/release.yml: thenew_line=that rewrites the Formula on each release now emits the forgejo URL, so the next release doesn't clobber the change. Header comment updated to show the forgejo brew-tap command.README.md: bootstrap brew-tap command points at forgejo.cmd/coily/brew.go:brewTapScopedActionacceptshttps://forgejo.coilysiren.me/coilysiren/<repo>URL positionals (newbrewTapPositionalAllowedhelper). Previously the URL positional inbrew tap coilysiren/<x> <url>was only allowed when the URL started withcoilysiren/, which forced--allow-untapped. Forgejo URLs now pass the scope check.Note
The forgejo repo reports
mirror:falseand no push automation writes to it yet. Until the push flow is flipped,brew installwill 404 on tags that exist on github but not on forgejo. Tracked separately.