From a29ceb690d9406ee93485e398dbadda68e2f4e7c Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 4 May 2026 20:37:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A6=81=E7=94=A8Docker=E6=9E=84?= =?UTF-8?q?=E5=BB=BA=E7=BC=93=E5=AD=98=E7=A1=AE=E4=BF=9D=E5=89=8D=E7=AB=AF?= =?UTF-8?q?=E8=B5=84=E6=BA=90=E6=AD=A3=E7=A1=AE=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除GitHub Actions的Docker缓存配置 - 添加no-cache: true确保每次构建都是全新的 - 解决前端资源文件不更新的问题 --- .github/workflows/docker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index ee6ad1a..7a7dcc6 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -51,6 +51,5 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - cache-from: type=gha - cache-to: type=gha,mode=max + no-cache: true platforms: linux/amd64,linux/arm64