From d00ab199f485874053381992ebb0c22c17b372f6 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 19 Dec 2022 14:35:25 -0700 Subject: [PATCH] refactor: use own cache key build code-server job --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1a58e2b7b..2eacba567 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -170,9 +170,9 @@ jobs: uses: actions/cache@v3 with: path: "**/node_modules" - key: yarn-build-${{ hashFiles('**/yarn.lock') }} + key: yarn-build-code-server-${{ hashFiles('**/yarn.lock') }} restore-keys: | - yarn-build- + yarn-build-code-server- - name: Install dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true'