fix(ci): unbreak workflows + harden installer/release binaries#8
Draft
KitsuneKode wants to merge 3 commits into
Draft
fix(ci): unbreak workflows + harden installer/release binaries#8KitsuneKode wants to merge 3 commits into
KitsuneKode wants to merge 3 commits into
Conversation
…assets GitHub resolves local composite actions from the workspace before any step runs, so nesting checkout inside setup-bun-monorepo made every CI/release/ build-binaries job fail instantly since that action landed. Callers now checkout first; the composite only sets up Bun/caches/install. Also: native smoke matrix for host binaries, fail_on_unmatched_files + asset-count assert on release upload, clearer empty-release installer errors, and fix install.ps1 returning early after mpv so yt-dlp is offered. Co-authored-by: Manash Pratim Bhuyan <bhuyanmanash2002@gmail.com>
v0.2.6.json has an empty sections array (changelog body has no ### headings). The docs test required sections and failed once CI actually ran again after the checkout fix. Co-authored-by: Manash Pratim Bhuyan <bhuyanmanash2002@gmail.com>
This was referenced Jul 9, 2026
This was referenced Jul 9, 2026
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.
What changed
Unbreaks CI/release/build-binaries (broken since the
setup-bun-monorepocomposite nestedcheckout), adds native OS smoke for release binaries, and hardens installer/release asset handling so empty GitHub Releases stop silently breakinginstall.sh/install.ps1.Root cause (the “crazy all-OS build” failures)
Every job using
./.github/actions/setup-bun-monorepofailed in ~6–10s with:GitHub resolves local composite actions from the workspace before any step runs. Nesting
actions/checkoutinside the composite never works — the action isn’t on disk yet. That landed inf49fde93(2026-06-27) and has been failing CI, Release, and the weekly 8-target build ever since.Secondary installer pain:
v0.2.5(latest) has zero binary assets, so the defaultcurl | bash/irm | iexpath 404s. The binaries job never ran after the CI break, and there was no post-upload assert.Fixes in this PR
setup-bun-monorepouse; composite only does Bun + caches + installbuild-binaries.yml: native smoke matrix (ubuntu/macos/windows) after the 8-target cross-compilefail_on_unmatched_files: true+ assert ≥9 assets on the published taginstall.sh/install.ps1: clearer empty-release errors;install.ps1no longer returns after mpv (yt-dlp was unreachable).release/*.jsonartifacts (v0.2.6 has emptysections)Checklist
bun run changeset) — required for user-facing CLI changes; N/A for docs-only or non-release infrabun run guardpasses whenapps/cli/package.json, changelogs, or.changeset/**changedbun run fmt && bun run lint && bun run test && bun run typecheckpasses locallybun run buildpasses for feature, playback, provider, release, or packaging-sensitive changesFollow-up (not in this PR)
After merge, re-run Release (or manually
gh release uploadforv0.2.5/ publishv0.2.6) soreleases/latestactually has binaries again. Until then, users should usenpm/bunglobal install.