diff options
author | Paul Munteanu <luth@luthcode.net> | 2021-08-13 00:47:19 +0300 |
---|---|---|
committer | Paul Munteanu <luth@luthcode.net> | 2021-08-13 00:47:19 +0300 |
commit | d72f6f59cbe1d06c288bc61d48997ef443b345b7 (patch) | |
tree | 91261c321106bce8b49f0782eaa879074f761637 /.github | |
parent | [API/Docker] Yet another test (diff) | |
download | server-d72f6f59cbe1d06c288bc61d48997ef443b345b7.tar.xz |
[API/Docker] Fix cache keys
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docker-publish-api.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docker-publish-api.yml b/.github/workflows/docker-publish-api.yml index 5d64303f..405faae4 100644 --- a/.github/workflows/docker-publish-api.yml +++ b/.github/workflows/docker-publish-api.yml @@ -20,9 +20,9 @@ jobs: uses: actions/cache@v2 with: path: /tmp/.buildx-cache/api - key: ${{ runner.os }}-buildx-${{ github.sha }}-api + key: ${{ runner.os }}-buildx-api-${{ github.sha }} restore-keys: | - ${{ runner.os }}-buildx-api + ${{ runner.os }}-buildx-api- - name: Login to DockerHub uses: docker/login-action@v1 |