Fix cache key in docker build action

This commit is contained in:
Arjan H
2023-04-22 13:51:42 +02:00
parent abc9f503f2
commit d211ec9b1f

View File

@@ -44,7 +44,7 @@ jobs:
uses: actions/cache/save@v3
with:
path: build
key: build-dockers
key: build-dockers-${{ github.sha }}
build-publish:
runs-on: ubuntu-latest
@@ -71,7 +71,7 @@ jobs:
uses: actions/cache/restore@v3
with:
path: build
key: build-dockers
key: build-dockers-${{ github.sha }}
- name: Set up docker buildx
uses: docker/setup-buildx-action@v2