From f1ebad9abbd9a38f40b3bf1731c8f24d11933c7f Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Fri, 17 Apr 2020 09:53:26 +0900 Subject: [PATCH] docs: Enhance cache key (#235) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0522ee8..307220c 100644 --- a/README.md +++ b/README.md @@ -715,9 +715,9 @@ jobs: uses: actions/cache@v1 with: path: ${{ steps.yarn-cache.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-website-${{ hashFiles('**/yarn.lock') }} restore-keys: | - ${{ runner.os }}-yarn- + ${{ runner.os }}-website- - run: yarn install - run: yarn build