chore: move cache for buildx in docker actions (#3117)
Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
parent
fa9d0f6a48
commit
e5e60783fc
|
|
@ -29,3 +29,4 @@ jobs:
|
|||
exclusionPatterns: |
|
||||
deploy/helm-charts
|
||||
manager/console
|
||||
client-rs
|
||||
|
|
|
|||
|
|
@ -95,3 +95,11 @@ jobs:
|
|||
push: true
|
||||
cache-from: type=local,src=/tmp/.buildx-cache
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new
|
||||
|
||||
# Temp fix
|
||||
# https://github.com/docker/build-push-action/issues/252
|
||||
# https://github.com/moby/buildkit/issues/1896
|
||||
- name: Move cache
|
||||
run: |
|
||||
rm -rf /tmp/.buildx-cache
|
||||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit f549bb7eb933e49270e2440815498a96dbcfb612
|
||||
Subproject commit e8943a1b9df259ccc6f4c21b53a7f581985f2a40
|
||||
Loading…
Reference in New Issue