ci(release): scope build to tagged package and its workspace deps - #120
Closed
sirdeggen wants to merge 3 commits into
Closed
ci(release): scope build to tagged package and its workspace deps#120sirdeggen wants to merge 3 commits into
sirdeggen wants to merge 3 commits into
Conversation
Previously the release workflow built every package in the monorepo on every tag push. Now we resolve the publish filter first, then build only the tagged package plus its workspace dependencies (`./path...`). The monorepo-wide `v*` tag still falls back to `...[origin/main]`, matching the publish filter. This makes per-package releases significantly faster and avoids unrelated package failures from blocking a publish.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Signed-off-by: Deggen <d.kellenschwiler@bsvassociation.org>
sirdeggen
force-pushed
the
chore/release-yaml-scoped-build
branch
from
May 12, 2026 15:02
06130ba to
3074119
Compare
|
This was referenced Jul 25, 2026
ty-everett
added a commit
that referenced
this pull request
Jul 25, 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.



Summary
Why
Previously the release workflow built every package in the monorepo on every per-package tag push. That's slow and lets unrelated package build failures block a publish that doesn't depend on them. Scoping the build to the tagged package and its workspace deps cuts release time and isolates failures.
Test plan