From 4744eeb3ef331671da647d9df32fec32d3608e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Sun, 7 Sep 2025 14:41:44 +0200 Subject: [PATCH] Update BUILD_DATE format to include seconds * Comply with all standards (RFC 3339, ISO 8601, and HTML). * Reduce ambiguity. * Ensure a fully compliant `org.opencontainers.image.created`. (fix artifacthub error) --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index c12fbe4..ef4dc96 100755 --- a/build.sh +++ b/build.sh @@ -223,7 +223,7 @@ fi ### # Variables for labelling the docker image ### -BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M+00:00')" +BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%S+00:00')" if [ -d ".git" ] && [ -z "${SKIP_GIT}" ]; then GIT_REF="$(git rev-parse HEAD)"