• v2.3.9 2cf0528730

    fix(ui): show version+SHA+build time in footer; fix env not reaching runtime image
    Some checks failed
    CI / Backend (push) Successful in 51s
    CI / UI (push) Successful in 27s
    Release / Docker / caddy (push) Failing after 23s
    Release / Test backend (push) Successful in 38s
    Release / Check ui (push) Successful in 39s
    CI / Backend (pull_request) Successful in 28s
    CI / UI (pull_request) Successful in 36s
    Release / Docker / backend (push) Failing after 1m25s
    Release / Docker / runner (push) Successful in 2m25s
    Release / Docker / ui (push) Successful in 1m51s
    Release / Gitea Release (push) Has been skipped

    kamil released this 2026-03-28 19:33:49 +05:00

    PUBLIC_BUILD_VERSION and PUBLIC_BUILD_COMMIT were set only in the builder
    stage ENV — they were never re-declared in the runtime stage, so the Node
    server started with them undefined and the badge always showed 'dev'.

    Fix: re-declare all three ARGs after the second FROM and set runtime ENVs.
    Add PUBLIC_BUILD_TIME (ISO timestamp from gitea.event.head_commit.timestamp)
    injected via build-arg in release.yaml. Badge now shows e.g.:
    v2.3.9+abc1234 · 28 Mar 2026 14:30 UTC

    Downloads