fix(version) write build-info.json in CI to fix frontend version display #9
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "stage"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The
build-info.jsonwrite step was missing from bothbuild_stage.yamlandbuild_release.yaml. Without it, the frontend always fell back toversion: "dev"in deployed environments because the static file fetch returned 404.Fix: add the
echostep (as specified in ADR 2026-05-25-version-display) afternpm run buildand before packagingdist/in both workflows.