diff --git a/main.py b/main.py index 90f4396..2cee932 100644 --- a/main.py +++ b/main.py @@ -19,6 +19,12 @@ def root() -> dict: } +@app.get("/version") +def version() -> dict: + """Second E2E run — added to prove a fresh PR builds and deploys.""" + return {"release": "ci-2", "build": os.getenv("GIT_SHA", "unknown")} + + @app.get("/health") def health() -> dict: return {"status": "ok"}