From 156cd7c92655f63c242d4fd2f4cbba4c96486617 Mon Sep 17 00:00:00 2001 From: Gres Date: Sat, 5 Feb 2022 21:20:54 +0300 Subject: [PATCH] Make cache dependant on script changes --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 188e869..d83bbf2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,10 +58,10 @@ jobs: echo "QMAKE_FLAGS=QMAKE_CXX=g++-9 QMAKE_CC=gcc-9" >> $GITHUB_ENV - name: Cache dependencies - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: deps - key: ${{ env.OS }}-deps + key: ${{ env.OS }}-${{ hashFiles('./share/ci/*.py') }} - name: Make a release shell: bash