Add standalone website build workflow#7343
Merged
friedrichg merged 4 commits intomasterfrom Mar 10, 2026
Merged
Conversation
4fb0c0f to
440cee5
Compare
Extract website build into a separate GitHub Actions workflow that does not depend on the build-image container. This is Phase 1: both the new workflow and the existing build job produce website artifacts in parallel for comparison. The deploy job is disabled (false condition) until Phase 2 when we remove the website build from test-build-deploy.yml. Signed-off-by: Friedrich Gonzalez <1517449+friedrichg@users.noreply.github.com>
440cee5 to
f9c53b4
Compare
Signed-off-by: Friedrich Gonzalez <1517449+friedrichg@users.noreply.github.com>
dd922cd to
6ad4323
Compare
Signed-off-by: Friedrich Gonzalez <1517449+friedrichg@users.noreply.github.com>
This reverts commit 10aa9c4. Signed-off-by: Friedrich Gonzalez <1517449+friedrichg@users.noreply.github.com>
SungJin1212
reviewed
Mar 10, 2026
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | ||
| with: | ||
| go-version-file: go.mod | ||
| cache: false |
Member
There was a problem hiding this comment.
Should we keep disabling the cache?
Member
Author
There was a problem hiding this comment.
it's fast for now. Let's keep it like this for now
SungJin1212
approved these changes
Mar 10, 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 this PR does:
Phase 1 of #7342: Adds a standalone GitHub Actions workflow (
.github/workflows/web.yml) that builds the documentation website without depending on the build-image container.Why:
The build-image takes ~80 minutes to rebuild (#7339). Website tooling (Hugo, Node.js, PostCSS) is bundled in the image, so any website dependency change requires a full rebuild. Additionally,
website/package-lock.jsonwas not used by any build process — the build image installs npm packages globally.What changed:
.github/workflows/web.yml— new workflow that installs Go, Node.js, and Hugo via GitHub Actions, runsnpm ciwith the lockfile, then builds the websitewebsite/package-lock.json— regenerated sonpm ciworksif: false && ...) to avoid racing with the existing deploy intest-build-deploy.ymltest-build-deploy.ymlis unchanged — both run in parallel for comparison during Phase 1Next steps (Phase 2):
web.yml, remove website build + deploy fromtest-build-deploy.ymlbuild-image/Dockerfile(Phase 3)Checklist
CHANGELOG.mdupdated