File tree Expand file tree Collapse file tree 2 files changed +6
-13
lines changed Expand file tree Collapse file tree 2 files changed +6
-13
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- name : Checkout
11
- uses : actions/checkout@v3
11
+ uses : actions/checkout@v4
12
12
with :
13
13
fetch-depth : 0
14
14
15
15
- name : Setup Node.js
16
- uses : actions/setup-node@v3
16
+ uses : actions/setup-node@v4
17
17
with :
18
- node-version : 18
18
+ node-version : 22
19
19
cache : npm
20
20
21
21
- name : Install Deps
22
22
run : npm ci
23
23
24
24
- name : Build Docs
25
- env :
26
- NODE_OPTIONS : --max_old_space_size=8192
27
25
run : npm run docs:build
Original file line number Diff line number Diff line change @@ -3,32 +3,27 @@ name: Deploy Docs
3
3
on :
4
4
push :
5
5
branches :
6
- # make sure this is the branch you are using
7
6
- main
8
7
9
8
jobs :
10
9
deploy-gh-pages :
11
10
runs-on : ubuntu-latest
12
11
steps :
13
12
- name : Checkout
14
- uses : actions/checkout@v3
13
+ uses : actions/checkout@v4
15
14
with :
16
15
fetch-depth : 0
17
- # if your docs needs submodules, uncomment the following line
18
- # submodules: true
19
16
20
17
- name : Setup Node.js
21
- uses : actions/setup-node@v3
18
+ uses : actions/setup-node@v4
22
19
with :
23
- node-version : 18
20
+ node-version : 22
24
21
cache : npm
25
22
26
23
- name : Install Deps
27
24
run : npm ci
28
25
29
26
- name : Build Docs
30
- env :
31
- NODE_OPTIONS : --max_old_space_size=8192
32
27
run : |-
33
28
npm run docs:build
34
29
> src/.vuepress/dist/.nojekyll
You can’t perform that action at this time.
0 commit comments