Skip to content

Commit 8ef8105

Browse files
committed
Removed caching from docker build in CI.
1 parent c269542 commit 8ef8105

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.github/workflows/callable-build.yml

+2-12
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ jobs:
3030
- name: Set up Docker Buildx
3131
uses: docker/setup-buildx-action@v3
3232

33-
- name: Cache Docker Layers
34-
uses: actions/cache@v4
35-
with:
36-
path: /tmp/.buildx-cache
37-
key: ${{ runner.os }}-buildx-${{ github.sha }}
38-
restore-keys: |
39-
${{ runner.os }}-buildx-
40-
4133
- name: Login to GitHub Container Registry
4234
uses: docker/login-action@v3
4335
with:
@@ -56,8 +48,7 @@ jobs:
5648
push: true
5749
tags: |
5850
${{ env.GHCR_IMAGE }}:${{ inputs.image_tag }}
59-
cache-from: type=local,src=/tmp/.buildx-cache
60-
cache-to: type=local,dest=/tmp/.buildx-cache
51+
no-cache: true
6152
platforms: linux/amd64
6253

6354
- name: Image Digest (linux/amd64)
@@ -74,8 +65,7 @@ jobs:
7465
push: true
7566
tags: |
7667
${{ env.GHCR_IMAGE }}:${{ inputs.image_tag }}
77-
cache-from: type=local,src=/tmp/.buildx-cache
78-
cache-to: type=local,dest=/tmp/.buildx-cache
68+
no-cache: true
7969
platforms: linux/arm64/v8
8070

8171
- name: Image Digest (linux/arm64)

0 commit comments

Comments
 (0)