EU Parliament Monitor — API Documentation - v1.0.11
    Preparing search index...

    Variable BUILD_TIMEConst

    BUILD_TIME: string = ...

    ISO 8601 timestamp for when this build was produced. Precedence:

    1. process.env.BUILD_TIME (CI sets this in the workflow)
    2. Commit timestamp of BUILD_ID (git log -1 --format=%cI) — deterministic for a given commit, so workflow_dispatch re-runs of the same SHA produce a byte-identical build-info.json and sw.js and aws s3 sync correctly skips them as unchanged.
    3. new Date().toISOString() fallback (only hits when both env and git are unavailable, e.g. tarball builds outside a git checkout).