Skip to content

Commit fbf9c5b

Browse files
committed
Try fixing build
1 parent 0f9e454 commit fbf9c5b

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/docs.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,15 @@ jobs:
2828
uses: actions/setup-node@v4
2929
with:
3030
node-version: 22
31-
cache: npm
32-
cache-dependency-path: docs/package-lock.json
31+
32+
- name: Clean npm cache and dependencies
33+
run: |
34+
rm -rf node_modules package-lock.json
35+
npm cache clean --force
36+
working-directory: docs
3337

3438
- name: Install dependencies
35-
run: npm ci
39+
run: npm install
3640
working-directory: docs
3741

3842
- name: Extract version from tag

0 commit comments

Comments
 (0)