~ splitting github cache in 2 so one can be released while the other is running (it appears that the 5GB limit is reached if alpine + debian* share the same cache)

This commit is contained in:
nicobo 2021-01-26 21:07:42 +01:00
parent 217f195abf
commit 790f8fda56
No known key found for this signature in database
GPG key ID: 2581E71C5FA5285F

View file

@ -57,9 +57,9 @@ jobs:
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
key: ${{ runner.os }}-alpine-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
${{ runner.os }}-alpine-buildx-
- name: Login to Docker Hub
uses: docker/login-action@v1
@ -132,9 +132,9 @@ jobs:
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
key: ${{ runner.os }}-debian-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
${{ runner.os }}-debian-buildx-
- name: Login to Docker Hub
uses: docker/login-action@v1