From 3abdba05e967435573662996bf7c7c6ff7601703 Mon Sep 17 00:00:00 2001 From: Eden Reich Date: Wed, 26 Feb 2025 19:17:56 +0000 Subject: [PATCH] build: Remove unnecessary image creation label from release workflow - it revalidating the cache on each run Signed-off-by: Eden Reich --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f48aa59..83889d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -265,7 +265,6 @@ jobs: --destination=${{ env.CONTAINER_REGISTRY }}/${{ env.REPOSITORY_OWNER }}/${{ env.REPOSITORY_NAME }}:minimal \ --destination=${{ env.CONTAINER_REGISTRY }}/${{ env.REPOSITORY_OWNER }}/${{ env.REPOSITORY_NAME }}:minimal-${{ env.VERSION }} \ --build-arg=TARGET_ARCH=${{ matrix.target }} \ - --label="org.opencontainers.image.created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" \ --label="org.opencontainers.image.version=${{ env.VERSION }}" \ --label="org.opencontainers.image.revision=${{ github.sha }}" \ --label="org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}" \