From a70cc9b9561c9165d693d7bd3e61f4a9c987704d Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Fri, 5 Jun 2020 13:55:28 +0400 Subject: [PATCH] Fix patches cache on windows and macos actions --- .github/workflows/mac.yml | 2 +- .github/workflows/win.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 0515ca1f7..dd6f9e04e 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -404,7 +404,7 @@ jobs: uses: actions/cache@v1 with: path: ${{ env.LibrariesPath }}/qt-cache - key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_8.diff') }} + key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_8/*') }} - name: Use cached Qt 5.12.8. if: steps.cache-qt.outputs.cache-hit == 'true' run: | diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml index 24bc1c58e..763feb260 100644 --- a/.github/workflows/win.yml +++ b/.github/workflows/win.yml @@ -294,7 +294,7 @@ jobs: uses: actions/cache@v1 with: path: ${{ env.LibrariesPath }}/Qt-5.12.8 - key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_8.diff') }} + key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_8/*') }} - name: Configure Qt 5.12.8. if: steps.cache-qt.outputs.cache-hit != 'true' shell: cmd