Skip to content

Commit 0493ec9

Browse files
committed
Merge branch 'main' into feat/l1-reorg
2 parents 524304a + 78999f4 commit 0493ec9

File tree

18 files changed

+1955
-1185
lines changed

18 files changed

+1955
-1185
lines changed

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
[alias]
22
docs = "doc --workspace --all-features --no-deps"
3+
[build]
4+
rustflags = ["--cfg", "tokio_unstable"]

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
# include source files
55
!/bin
6+
!/.cargo
67
!/crates
78
!/testing
89
!/tests

.github/workflows/book.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Deploy mdBook
2+
on:
3+
push:
4+
branches: [main]
5+
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: write
11+
steps:
12+
- uses: actions/checkout@v5
13+
- uses: peaceiris/actions-mdbook@v2
14+
with:
15+
mdbook-version: 'latest'
16+
17+
- name: Build book
18+
run: mdbook build book # Add "book" to specify the directory
19+
20+
- uses: peaceiris/actions-gh-pages@v4
21+
with:
22+
github_token: ${{ secrets.GITHUB_TOKEN }}
23+
publish_dir: ./book/book

0 commit comments

Comments
 (0)