ci(release): bump bun to 1.2.10 (fixes workspace glob)#12
Merged
Conversation
bun 1.1.0 doesn't understand `bun run --filter '*' build` — it reads the '*' as a literal script name and fails with `Script not found "*"`. 1.2+ handles the workspace glob filter correctly. The first run of release.yml after merging #11 failed at the build step for exactly this reason. Pinning to 1.2.10 (latest patch in 1.2.x line) rather than `latest` for reproducibility. ci.yml stays at 1.1.0 since it doesn't go through workspace filters (just runs lint + per-package typecheck). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
First run of `release.yml` after merging #11 failed at the build step:
```
$ bun run --filter '' build
error: Script not found ""
error: script "build" exited with code 1
```
bun 1.1.0 (what `release.yml` was pinned to) doesn't understand the workspace glob filter syntax — it treats `*` as a literal script name. 1.2+ handles it correctly.
This PR pins `release.yml` to bun `1.2.10` (latest patch in 1.2.x line). `ci.yml` stays at 1.1.0 because it only runs lint + per-package typecheck and doesn't go through workspace filters.
After merge, release.yml will retry on its own merge-to-main push. Expected result: 0 published / many skipped (all current versions already tagged).
Failing run: https://github.com/leefanv/omit-design/actions/runs/25659924030
🤖 Generated with Claude Code