There was an error while loading. Please reload this page.
1 parent ef4561f commit 1712b85Copy full SHA for 1712b85
3 files changed
.github/workflows/build-deploy.yaml
@@ -28,9 +28,9 @@ jobs:
28
run_install: true
29
30
- name: Set up Node.js
31
- uses: actions/setup-node@v6
+ uses: actions/setup-node@v7
32
with:
33
- node-version: 24
+ node-version: 26
34
cache: "pnpm"
35
36
- name: Setup Pages
.github/workflows/build.yaml
@@ -19,9 +19,9 @@ jobs:
19
20
21
22
23
24
25
26
27
- name: Build
.readthedocs.yaml
@@ -0,0 +1,12 @@
1
+version: 2
2
+
3
+build:
4
+ os: ubuntu-lts-latest
5
+ tools:
6
+ nodejs: "26"
7
+ commands:
8
+ - corepack enable
9
+ - pnpm install --frozen-lockfile
10
+ - pnpm build
11
+ - mkdir -p $READTHEDOCS_OUTPUT/html
12
+ - cp -r dist/* $READTHEDOCS_OUTPUT/html/
0 commit comments