fix(ci): trigger on master branch, not nonexistent main - #12
Merged
Conversation
The default branch is master; the push trigger named main, so pushes to the default branch never ran CI. Only the pull_request trigger fired (e.g. during PR #11). Point the push trigger at master so the gate runs on every default- branch push.
ryanleecode
pushed a commit
that referenced
this pull request
Aug 22, 2026
Metadata gate: --argjson want so the os/cpu/libc object comparison is meaningful (was always false, blocking every release); package name uses LAUNCHER_NAME (was undefined LAUNCHER); non-empty assertions. Concurrency keyed by tag ref with cancel-in-progress so a force-moved tag re-runs in a fresh lane while two runs of the same tag can never publish the same version twice. Publish order: root launcher now publishes BEFORE the platform packages so their exact launcher peerDependencies resolve; a final verify-release job runs the metadata gate, three-way digest cross-check and root pin check after every publish and the GitHub release upload. check-matrix: matrixRows reads only the named release job (no decoy-job acceptance), rejects empty/malformed include rows, and compares the per-row runner against targets.json; targets.json carries the canonical runner and check-matrix validates it against the known-runner set. Cross-check: set -euo pipefail, exactly-one-binary and non-empty guard, non-empty sidecar guard, bounded retries for gh release download matching npm pack. Exit-code contract: smoke payloads are byte-identical to the Rust constants; new release-smoke.test.ts pins the workflow's -eq 0/-eq 2 assertions and payload bytes so tag-time drift breaks CI instead.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes the CI dead-trigger on the default branch.
Root cause:
ci.ymlpushed onbranches: [main], but the repository's default branch ismaster—maindoes not exist. So pushes to the default branch never fired CI; the only runs came from thepull_requesttrigger. After PR #11 merged, master CI has had no trigger at all (verified: no workflow runs on the current master head).Change: the push trigger now names
master— the real default branch — so the gate runs on every default-branch push.Also unblocks the tag-triggered
release.ymlpath: once merged, av0.1.0tag can be pushed on master to publish the Rust binaries as real npm packages (currently only0.0.0-dummy-npmplaceholders exist on npm).