Skip to content

Commit fe9633e

Browse files
CodeCasterXclaude
andcommitted
fix(ci): trust homebrew tap before building bottle
Homebrew 6.0 refuses to load formulae from untrusted third-party taps, breaking the v0.7.7 bottle build. Trust fitlab-ai/tap after tapping so brew install --build-bottle can load the formula. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent f79e9fc commit fe9633e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/update-homebrew.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,11 @@ jobs:
146146
platform: arm64_sonoma
147147
steps:
148148
- name: Configure brew tap
149-
run: brew tap fitlab-ai/tap
149+
run: |
150+
brew tap fitlab-ai/tap
151+
# Homebrew 6.0+ refuses to load formulae from untrusted third-party
152+
# taps; trust our own tap so --build-bottle can load the formula.
153+
brew trust fitlab-ai/tap
150154
151155
- name: Build bottle
152156
env:

0 commit comments

Comments
 (0)