fix(ci): adapt rfc3339 pattern
Lint Markdown files / markdown-lint (push) Successful in 6s
Release latest / push-amd64 (push) Successful in 1m5s
Release latest / push-arm64 (push) Successful in 1m51s
Release latest / push-manifest (push) Failing after 14m49s
Release latest / sync-to-hub-docker-io (push) Has been skipped

This commit is contained in:
2026-06-05 13:10:17 +02:00
parent f93edaf78e
commit cd1d27e0b8
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ jobs:
- name: Build and push image
run: |
docker buildx build \
--build-arg BUILD_DATE="$(date --rfc-3339 seconds)" \
--build-arg BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
--file Dockerfile \
--platform linux/arm64 \
--provenance false \
@@ -47,7 +47,7 @@ jobs:
- name: Build and push image
run: |
docker buildx build \
--build-arg BUILD_DATE="$(date --rfc-3339 seconds)" \
--build-arg BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
--file Dockerfile \
--platform linux/amd64 \
--provenance false \
+2 -2
View File
@@ -44,7 +44,7 @@ jobs:
- name: Build and push image
run: |
docker buildx build \
--build-arg BUILD_DATE="$(date --rfc-3339 seconds)" \
--build-arg BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
--build-arg DC_VERSION=${{ steps.version_extraction.outputs.version_raw }} \
--file Dockerfile \
--platform linux/arm64 \
@@ -85,7 +85,7 @@ jobs:
- name: Build and push image
run: |
docker buildx build \
--build-arg BUILD_DATE="$(date --rfc-3339 seconds)" \
--build-arg BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
--build-arg DC_VERSION=${{ steps.version_extraction.outputs.version_raw }} \
--file Dockerfile \
--platform linux/amd64 \
+1 -1
View File
@@ -18,7 +18,7 @@ DC_IMAGE_FULLY_QUALIFIED=${DC_IMAGE_REGISTRY_NAME}/${DC_IMAGE_NAMESPACE}/${DC_IM
PHONY:=container-image/build
container-image/build:
${CONTAINER_RUNTIME} build \
--build-arg BUILD_DATE="$(shell date --rfc-3339 seconds)" \
--build-arg BUILD_DATE="$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")" \
--file Dockerfile \
--no-cache \
--pull \