We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79c556f commit db9fb1fCopy full SHA for db9fb1f
.github/workflows/main.yml
@@ -89,7 +89,7 @@ jobs:
89
context: .
90
file: ./Dockerfile
91
cache-from: type=local,src=/tmp/.buildx-cache
92
- cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
+ cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
93
load: true
94
tags: ${{ steps.docker_meta.outputs.tags }}
95
# Use runtime labels from docker_meta as well as fixed labels
@@ -109,3 +109,8 @@ jobs:
109
- name: Push image
110
if: ${{ github.event_name != 'pull_request' }}
111
run: docker push ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }}
112
+
113
+ - name: Move cache
114
+ run: |
115
+ rm -rf /tmp/.buildx-cache
116
+ mv /tmp/.buildx-cache-new /tmp/.buildx-cache
0 commit comments