The Homebrew publish workflow downloads a source tarball but never ensures Node.js is available during the build. Without it, build.rs cannot run npm to compile the web frontend, so Homebrew-installed ZeroClaw ships without the web dashboard. Add `depends_on "node" => :build` to the formula by inserting it after the existing `depends_on "rust" => :build` line. This lets build.rs detect npm and automatically run `npm ci && npm run build` to produce the web/dist assets. Fixes #3991 |
||
|---|---|---|
| .. | ||
| checks-on-pr.yml | ||
| ci-run.yml | ||
| cross-platform-build-manual.yml | ||
| master-branch-flow.md | ||
| pub-aur.yml | ||
| pub-homebrew-core.yml | ||
| pub-scoop.yml | ||
| publish-crates-auto.yml | ||
| publish-crates.yml | ||
| README.md | ||
| release-beta-on-push.yml | ||
| release-stable-manual.yml | ||
| tweet-release.yml | ||
Workflow Directory Layout
GitHub Actions only loads workflow entry files from:
.github/workflows/*.yml.github/workflows/*.yaml
Subdirectories are not valid locations for workflow entry files.
Repository convention:
- Keep runnable workflow entry files at
.github/workflows/root. - Keep cross-tooling/local CI scripts under
dev/orscripts/ci/when used outside Actions.
Workflow behavior documentation in this directory:
.github/workflows/master-branch-flow.md