From 8ac76e5b30ad0aa631e3bfc4b298713dee44c25a Mon Sep 17 00:00:00 2001 From: taskylizard <75871323+taskylizard@users.noreply.github.com> Date: Fri, 20 Sep 2024 17:46:59 +0000 Subject: [PATCH] even more caching --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c144ee24df..af2186ce83 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,14 +30,14 @@ jobs: cache: "pnpm" - name: Install dependencies - run: pnpm install + run: pnpm install --frozen-lockfile - name: Cache Vitepress uses: actions/cache@v4 with: path: docs/.vitepress/cache - key: vitepress-cache - restore-keys: vitepress-cache + key: ${{ runner.OS }}-vitepress-${{ hashFiles('docs/.vitepress/cache/**') }} + restore-keys: ${{ runner.OS }}-vitepress- - name: Build docs run: pnpm docs:build