Skip to content

Commit e8bc5af

Browse files
committed
Merge branch 'feat/prepare-1-11' of https://github.com/hyperledger/bevel-operator-fabric into feat/prepare-1-11
Signed-off-by: David VIEJO <[email protected]>
2 parents 69fd61f + 0e7252c commit e8bc5af

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/release_web.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@ on:
77

88
jobs:
99
deploy:
10-
name: Deploy to GitHub Pages
10+
name: Deploy to GitHub Page
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
1414

15+
- name: Setup Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: '22'
19+
1520
- name: Setup Bun
1621
uses: oven-sh/setup-bun@v1
1722
with:
@@ -28,12 +33,12 @@ jobs:
2833
- name: Install dependencies
2934
run: |
3035
cd website-docs
31-
bun install
36+
yarn install --frozen-lockfile
3237
3338
- name: Build Docusaurus website
3439
run: |
3540
cd website-docs
36-
bun run build
41+
yarn run build
3742
3843
- name: Deploy to GitHub Pages
3944
uses: peaceiris/actions-gh-pages@v3

website-docs/docs/intro/getting-started-3-0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ spec:
446446
collect_timeout: "1s"
447447
sync_on_start: true
448448
speed_up_view_change: false
449-
leader_rotation: 1 # off
449+
leader_rotation: 0 # unspecified
450450
decisions_per_leader: 3
451451
request_max_bytes: 0
452452

0 commit comments

Comments
 (0)