Skip to content

Commit 7c11804

Browse files
authored
Merge branch 'main' into venue
2 parents 77b7418 + ba55838 commit 7c11804

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

.github/workflows/build-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
run_install: true
2929

3030
- name: Set up Node.js
31-
uses: actions/setup-node@v6
31+
uses: actions/setup-node@v7
3232
with:
33-
node-version: 24
33+
node-version: 26
3434
cache: "pnpm"
3535

3636
- name: Setup Pages

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
run_install: true
2020

2121
- name: Set up Node.js
22-
uses: actions/setup-node@v6
22+
uses: actions/setup-node@v7
2323
with:
24-
node-version: 24
24+
node-version: 26
2525
cache: "pnpm"
2626

2727
- name: Build

.readthedocs.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
3+
build:
4+
os: ubuntu-lts-latest
5+
tools:
6+
nodejs: "26"
7+
commands:
8+
- npm install -g corepack
9+
- corepack enable
10+
- pnpm install --frozen-lockfile
11+
- pnpm build
12+
- mkdir -p $READTHEDOCS_OUTPUT/html
13+
- cp -r dist/* $READTHEDOCS_OUTPUT/html/

0 commit comments

Comments
 (0)