File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
deploy :
10
- name : Deploy to GitHub Pages
10
+ name : Deploy to GitHub Page
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@v3
14
14
15
+ - name : Setup Node.js
16
+ uses : actions/setup-node@v3
17
+ with :
18
+ node-version : ' 22'
19
+
15
20
- name : Setup Bun
16
21
uses : oven-sh/setup-bun@v1
17
22
with :
@@ -28,12 +33,12 @@ jobs:
28
33
- name : Install dependencies
29
34
run : |
30
35
cd website-docs
31
- bun install
36
+ yarn install --frozen-lockfile
32
37
33
38
- name : Build Docusaurus website
34
39
run : |
35
40
cd website-docs
36
- bun run build
41
+ yarn run build
37
42
38
43
- name : Deploy to GitHub Pages
39
44
uses : peaceiris/actions-gh-pages@v3
Original file line number Diff line number Diff line change @@ -446,7 +446,7 @@ spec:
446
446
collect_timeout: "1s"
447
447
sync_on_start: true
448
448
speed_up_view_change: false
449
- leader_rotation: 1 # off
449
+ leader_rotation: 0 # unspecified
450
450
decisions_per_leader: 3
451
451
request_max_bytes: 0
452
452
You can’t perform that action at this time.
0 commit comments