zeroclaw/.github/workflows
Argenis 50e8d4f5f8
fix(ci): use pre-built binaries for Debian Docker image (#3814)
The Debian compatibility image was building from source with QEMU
cross-compilation for ARM64, which is extremely slow and was getting
cancelled by the concurrency group. Switch to using pre-built binaries
(same as the distroless image) with a debian:bookworm-slim runtime base.

- Add Dockerfile.debian.ci (mirrors Dockerfile.ci with Debian runtime)
- Update release-beta-on-push.yml to use docker-ctx + pre-built bins
- Update release-stable-manual.yml with same fix
- Drop GHA cache layers (no longer building from source)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-17 15:21:15 -04:00
..
checks-on-pr.yml ci: add x86_64-pc-windows-msvc to build matrix (#3449) 2026-03-13 21:45:08 -04:00
ci-run.yml ci: add x86_64-pc-windows-msvc to build matrix (#3449) 2026-03-13 21:45:08 -04:00
cross-platform-build-manual.yml fix(release): include matrix channel in official builds (#3800) 2026-03-17 13:38:33 -04:00
master-branch-flow.md ci: add x86_64-pc-windows-msvc to build matrix (#3449) 2026-03-13 21:45:08 -04:00
pub-aur.yml ci: auto-sync Scoop and AUR on stable release (#3743) 2026-03-16 21:34:29 -04:00
pub-homebrew-core.yml ci(homebrew): restore Homebrew core formula publishing workflow 2026-03-16 14:12:48 -04:00
pub-scoop.yml ci: auto-sync Scoop and AUR on stable release (#3743) 2026-03-16 21:34:29 -04:00
publish-crates-auto.yml fix(ci): make crates.io publish idempotent across all workflows 2026-03-16 15:11:29 -04:00
publish-crates.yml fix(ci): make crates.io publish idempotent across all workflows 2026-03-16 15:11:29 -04:00
README.md chore: update .gitignore, CODEOWNERS, and dependabot configuration 2026-03-07 21:05:23 -05:00
release-beta-on-push.yml fix(ci): use pre-built binaries for Debian Docker image (#3814) 2026-03-17 15:21:15 -04:00
release-stable-manual.yml fix(ci): use pre-built binaries for Debian Docker image (#3814) 2026-03-17 15:21:15 -04:00
tweet-release.yml fix: only tweet for stable releases, not beta builds (#3808) 2026-03-17 14:06:46 -04:00

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:

  1. Keep runnable workflow entry files at .github/workflows/ root.
  2. Keep cross-tooling/local CI scripts under dev/ or scripts/ci/ when used outside Actions.

Workflow behavior documentation in this directory:

  • .github/workflows/master-branch-flow.md