Speed up publish-release workflow by adding Go/WASM caching and bundle timeout#393
Open
Copilot wants to merge 1 commit into
Open
Speed up publish-release workflow by adding Go/WASM caching and bundle timeout#393Copilot wants to merge 1 commit into
Copilot wants to merge 1 commit into
Conversation
Copilot created this pull request from a session on behalf of
JakeSCahill
June 22, 2026 20:57
View session
✅ Deploy Preview for docs-ui ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
|
Thanks for tackling the release-workflow stalls — the multi-hour runs are real and worth fixing. But the run history points at a different cause than this PR targets, so I'd like to rescope it before merging. What the runs actually show. All four 6-hour cancelled runs hung in the dependency-install step, and
On healthy runs ( Suggested changes:
|
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.

publish-releasewas spending excessive time ingulp bundle, with repeated long attempts caused by uncached Go/WASM work and no guardrail on step duration. This change aligns release-path caching with existing build validation behavior and adds a hard timeout to prevent multi-hour hangs.Workflow bottleneck addressed
actions/setup-go@v5) with module cache keyed byblobl-editor/wasm/go.sum.Generated artifact caching
src/static/blobl.wasmkeyed by Go + Node dependency state.Execution guardrail
timeout-minutes: 10togulp bundlein publish workflow.