We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5175e commit d2eaa6fCopy full SHA for d2eaa6f
.github/workflows/deploy-docs.yml
@@ -20,24 +20,25 @@ concurrency:
20
jobs:
21
build:
22
runs-on: ubuntu-latest
23
+ defaults:
24
+ run:
25
+ working-directory: "docs"
26
steps:
27
- name: Checkout
28
uses: actions/checkout@v4
29
with:
30
fetch-depth: 0
31
- name: Setup node
32
uses: actions/setup-node@v4
- working-directory: ./docs
33
34
node-version: 20
35
cache: npm
36
+ cache-dependency-path: "**/package-lock.json"
37
- name: Setup Pages
38
uses: actions/configure-pages@v4
39
- name: Install dependencies
40
run: npm ci
41
- name: Build with VitePress
42
run: npm run build
43
- name: Upload artifact
44
uses: actions/upload-pages-artifact@v3
0 commit comments