Skip to content

Commit

Permalink
even more caching
Browse files Browse the repository at this point in the history
  • Loading branch information
taskylizard committed Sep 20, 2024
1 parent fc85020 commit 8ac76e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8ac76e5

Please sign in to comment.