From 9b33c12d15a20b252e8250798973fe3fafdc0cd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=B3=E9=88=9E?= Date: Sat, 18 May 2024 20:18:28 +0800 Subject: [PATCH] ci: remove docker build cache MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - The cache settings in the Docker publishing workflow have been removed. This includes the removal of settings using `cache-from` and `cache-to` directive related to registry type cache. This change has been reflected in all docker jobs. Signed-off-by: 陳鈞 --- .github/workflows/docker_publish.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml index 9d13684..2eca274 100644 --- a/.github/workflows/docker_publish.yml +++ b/.github/workflows/docker_publish.yml @@ -58,9 +58,6 @@ jobs: VERSION=${{ github.head_ref || github.ref_name }} RELEASE=${{ github.run_number }} platforms: linux/amd64,linux/arm64 - # Cache to regietry instead of gha to avoid the capacity limit. - cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/fc2-live-dl:cache - cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/fc2-live-dl:cache,mode=max sbom: true provenance: true @@ -105,9 +102,6 @@ jobs: VERSION=${{ github.head_ref || github.ref_name }} RELEASE=${{ github.run_number }} platforms: linux/amd64,linux/arm64 - # Cache to regietry instead of gha to avoid the capacity limit. - cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/fc2-live-dl:cache - cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/fc2-live-dl:cache,mode=max sbom: true provenance: true @@ -152,8 +146,5 @@ jobs: VERSION=${{ github.head_ref || github.ref_name }} RELEASE=${{ github.run_number }} platforms: linux/amd64,linux/arm64 - # Cache to regietry instead of gha to avoid the capacity limit. - cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/fc2-live-dl:cache - cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/fc2-live-dl:cache,mode=max sbom: true provenance: true