Skip to content

Commit c478c22

Browse files
committed
fix: correct directory navigation for dependency installation in deploy workflow
1 parent 3d83754 commit c478c22

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
check-latest: true
3535
cache: "pnpm"
3636
- name: Install dependencies 🪄
37-
run: pnpm install --frozen-lockfile
37+
run: |
38+
cd docs
39+
pnpm install --frozen-lockfile
3840
- name: Build documentation 💎
3941
run: |
4042
cd docs

0 commit comments

Comments
 (0)