zeroclaw/.github/workflows
Argenis a809ad7598
fix(ci): decouple tweet from crates.io and fix duplicate publish handling (#3716)
Drop crates-io from the tweet job's needs so the release announcement
goes out with GitHub release, Docker, and website — not blocked by
crates.io publish timing.

Also fix the duplicate detection: the previous curl-based check used
a URL that didn't match the actual crate, causing cargo publish to
hit "already exists" and fail the whole job. Now we just run cargo
publish and treat "already exists" as success.
2026-03-24 15:17:13 +03: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 chore(deps): bump actions/download-artifact from 4 to 8 2026-03-11 04:30:08 -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
publish-crates-auto.yml feat: auto-sync crates.io on version bump 2026-03-24 15:15:58 +03:00
publish-crates.yml fix: use --no-verify and clean web source to prevent build.rs from re-running npm 2026-03-24 15:15:57 +03: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): scope rust-cache by OS image and target in release beta workflow (#3708) 2026-03-24 15:17:13 +03:00
release-stable-manual.yml fix(ci): decouple tweet from crates.io and fix duplicate publish handling (#3716) 2026-03-24 15:17:13 +03:00
tweet-release.yml fix(ci): sync tweet and README after all release artifacts are published (#3531) 2026-03-24 15:16:02 +03: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