File tree 1 file changed +0
-19
lines changed
.github/actions/docker-build
1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change 57
57
- name : Set up Docker Buildx
58
58
uses : docker/setup-buildx-action@v3
59
59
60
- - name : Cache Docker layers
61
- uses : actions/cache@v3
62
- with :
63
- path : /tmp/.buildx-cache
64
- key : ${{ runner.os }}-buildx-${{ github.sha }}
65
- restore-keys : |
66
- ${{ runner.os }}-buildx-
67
-
68
60
- name : Log in to the Container registry
69
61
if : ${{ inputs.push }}
70
62
uses : docker/login-action@v3
92
84
provenance : false
93
85
tags : ${{ steps.meta.outputs.tags }}
94
86
labels : ${{ steps.meta.outputs.labels }}
95
- cache-from : type=local,src=/tmp/.buildx-cache
96
- cache-to : type=local,dest=/tmp/.buildx-cache-new,mode=max
97
-
98
- - # Temp fix
99
- # https://github.com/docker/build-push-action/issues/252
100
- # https://github.com/moby/buildkit/issues/1896
101
- name : Move cache
102
- shell : bash
103
- run : |
104
- rm -rf /tmp/.buildx-cache
105
- mv /tmp/.buildx-cache-new /tmp/.buildx-cache
You can’t perform that action at this time.
0 commit comments