Skip to content

Commit eb292e2

Browse files
committed
CI: fix deploy error
1 parent 0ff4ea2 commit eb292e2

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,13 @@ jobs:
1818
- uses: actions-rs/toolchain@v1
1919
with:
2020
toolchain: stable
21-
- run: (test -x $HOME/.cargo/bin/mdbook || cargo install mdbook)
22-
- run: mdbook build && mdbook test
23-
- uses: JamesIves/github-pages-deploy-action@v4.4.1
21+
- name: install mdbook
22+
run: (test -x $HOME/.cargo/bin/mdbook || cargo install mdbook)
23+
- name: build and test
24+
run: mdbook build && mdbook test
25+
- name: publish
26+
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository_owner == 'eunomia-bpf'
27+
uses: JamesIves/github-pages-deploy-action@v4.4.1
2428
with:
2529
branch: gh-pages
2630
folder: book

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,17 @@
4444

4545
这里涵盖了一系列和 eBPF 相关的高级内容,包含在 Android 上使用 eBPF 程序、使用 eBPF 程序进行可能的攻击与防御、复杂的追踪等等。将 eBPF 用户态与内核态的部分结合起来,可能能带来巨大的威力(同时也是安全隐患)。
4646

47+
Android:
48+
4749
- [在 Android 上使用 eBPF 程序](src/22-android/README.md)
48-
- [使用 eBPF 追踪 HTTP 请求或其他用户态协议](src/23-http/README.md)
50+
51+
网络和追踪:
52+
53+
- [使用 eBPF 追踪 HTTP 请求或其他七层协议](src/23-http/README.md)
54+
- [使用 sockops 加速网络请求转发](src/29-sockops/README.md)
55+
56+
安全:
57+
4958
- [使用 eBPF 隐藏进程或文件信息](src/24-hide/README.md)
5059
- [使用 bpf_send_signal 发送信号终止进程](src/25-signal/README.md)
5160
- [使用 eBPF 添加 sudo 用户](src/26-sudo/README.md)

src/29-sockops/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)