chore(ci): remove Docker build caching from CD workflow

Remove buildx cache steps and cache-from/cache-to options to simplify the CI pipeline and reduce potential cache-related issues.

lemon-mint committed Nov 5, 2025 at 09:52 UTC e500a84d5ee65080a796ce882f53a7aadc735de0
1 file changed +1 -8
.github/workflows/cd.yml
+1 -8
@@ -23,12 +23,6 @@ jobs:
23 - name: Checkout code
24 uses: actions/checkout@v5
25
26 - - name: Cache buildx
27 - uses: actions/cache@v4
28 - with:
29 - path: /tmp/.buildx-cache
30 - key: ${{ runner.os }}-${{ hashFiles('**/Dockerfile') }}
31 -
26 - name: Log in to Container Registry
27 uses: docker/login-action@v3
28 with:
@@ -56,5 +50,4 @@ jobs:
50 push: true
51 tags: ${{ steps.meta.outputs.tags }}
52 labels: ${{ steps.meta.outputs.labels }}
59 - cache-from: type=local,src=/tmp/.buildx-cache
60 - cache-to: type=local,dest=/tmp/.buildx-cache
53 +