From 224f7851aee3590ab56156b34f8a37ff7709a723 Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Fri, 14 Jan 2022 03:52:04 +0300 Subject: [PATCH] ci: workflow-specific cache key --- .github/workflows/push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index e64d6750..4e7885c1 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -21,7 +21,7 @@ jobs: uses: actions/cache@v2 with: path: code/test/unit/cache - key: ${{ runner.os }}-${{ hashFiles('code/test/unit/CMakeLists.txt') }} + key: ${{ runner.os }}-cmake-${{ hashFiles('code/test/unit/CMakeLists.txt') }} - name: Host tests run: | ./ci_install.sh host @@ -38,7 +38,7 @@ jobs: uses: actions/cache@v2 with: path: ~/.npm - key: ${{ runner.os }}-${{ hashFiles('code/package-lock.json', 'code/package.json') }} + key: ${{ runner.os }}-npm-${{ hashFiles('code/package-lock.json', 'code/package.json') }} - name: WebUI tests run: | ./ci_install.sh webui