From ddcd0acd4dbf1ddc8d7bd3b6c5db89ef764858ea Mon Sep 17 00:00:00 2001 From: Archicratia Date: Wed, 18 Mar 2026 11:11:54 +0100 Subject: [PATCH] Use Europe/Paris build time for ops health manifest --- .gitea/workflows/deploy-staging-live.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-staging-live.yml b/.gitea/workflows/deploy-staging-live.yml index 112b3b6..9142ec4 100644 --- a/.gitea/workflows/deploy-staging-live.yml +++ b/.gitea/workflows/deploy-staging-live.yml @@ -297,7 +297,7 @@ jobs: docker image tag archicratie-web:blue "archicratie-web:blue.BAK.${TS}" || true docker image tag archicratie-web:green "archicratie-web:green.BAK.${TS}" || true - BUILD_TIME_RAW="$(date '+%Y-%m-%dT%H:%M:%S%z')" + BUILD_TIME_RAW="$(TZ=Europe/Paris date '+%Y-%m-%dT%H:%M:%S%z')" BUILD_TIME="${BUILD_TIME_RAW:0:${#BUILD_TIME_RAW}-2}:${BUILD_TIME_RAW:${#BUILD_TIME_RAW}-2}" PUBLIC_OPS_ENV=staging \ @@ -371,7 +371,7 @@ jobs: docker compose -p "$PROJ" -f docker-compose.yml up -d --force-recreate --remove-orphans web_green || true } - BUILD_TIME_RAW="$(date '+%Y-%m-%dT%H:%M:%S%z')" + BUILD_TIME_RAW="$(TZ=Europe/Paris date '+%Y-%m-%dT%H:%M:%S%z')" BUILD_TIME="${BUILD_TIME_RAW:0:${#BUILD_TIME_RAW}-2}:${BUILD_TIME_RAW:${#BUILD_TIME_RAW}-2}" PUBLIC_OPS_ENV=prod \