From 59e116c19d1c35a6db319b65aecbe6d07a84e722 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Sat, 8 Jul 2023 01:01:21 +0100 Subject: [PATCH] fix key? --- .gitea/workflows/upload-image-dev.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/upload-image-dev.yaml b/.gitea/workflows/upload-image-dev.yaml index 0276721..aa9b9d2 100644 --- a/.gitea/workflows/upload-image-dev.yaml +++ b/.gitea/workflows/upload-image-dev.yaml @@ -11,11 +11,12 @@ jobs: - name: Checkout uses: https://github.com/actions/checkout@v3 - - uses: actions/cache@v3 + - name: Cache Docker + uses: actions/cache@v3 id: docker-cache with: path: /usr/bin/docker - key: ${{ runner.os }}-${{ hashFiles('**') }} + key: ${{ runner.os }}-docker - name: Install Docker if: steps.docker-cache.outputs.cache-hit != 'true'