Disable docker layer caching to avoid disk space exhaustion

This commit is contained in:
Misty 2022-02-01 18:53:28 +08:00
parent f507e920e0
commit 8dd5e16d47

View file

@ -16,14 +16,14 @@ jobs:
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
-
name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
#-
# name: Cache Docker layers
# uses: actions/cache@v2
# with:
# path: /tmp/.buildx-cache
# key: ${{ runner.os }}-buildx-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-buildx-
-
uses: docker/login-action@v1
with: