Fix cache

This commit is contained in:
Aaron Dalton 2024-01-11 21:45:39 -05:00
parent 111a597549
commit d7cc337a1d
2 changed files with 9 additions and 0 deletions

View File

@ -123,3 +123,11 @@ jobs:
platforms: linux/amd64,linux/arm64
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
# 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

View File

@ -10,3 +10,4 @@ jobs:
- run: gh repo sync discretizer/homepage
env:
GH_TOKEN: ${{ github.token }}