We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f31e089 commit a77125bCopy full SHA for a77125b
1 file changed
.github/workflows/deploy-docs.yml
@@ -26,17 +26,21 @@ jobs:
26
with:
27
node-version: '20'
28
cache: 'npm'
29
+ cache-dependency-path: 'docs/package-lock.json'
30
- - name: Install dependencies
31
+ - name: Install root dependencies
32
run: npm ci
33
- - name: Build website
34
- run: npm run build
+ - name: Build documentation
35
+ run: |
36
+ cd docs
37
+ npm ci
38
+ npm run build
39
40
- name: Upload artifact
41
uses: actions/upload-pages-artifact@v3
42
- path: ./build
43
+ path: ./docs/build
44
45
deploy:
46
environment:
0 commit comments