Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit 99e80b9

Browse files
committed
排障
1 parent 2992c28 commit 99e80b9

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

.github/workflows/build-wiki.yml

+27-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,33 @@ jobs:
2121
node-version: '10' # 选择 Node.js 版本
2222

2323
- name: Install GitBook
24-
run: npm install -g gitbook-cli && gitbook fetch # 安装 gitbook-cli
24+
run: npm install -g gitbook-cli # 安装 GitBook CLI
2525

2626
- name: Build GitBook
27+
run: gitbook build . # 构建 GitBook 静态文件
28+
29+
- name: Deploy to Main Branch
2730
run: |
28-
gitbook install && gitbook build # 构建 GitBook 静态文件
29-
ls
31+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
32+
git config --global user.name "github-actions[bot]"
33+
34+
# 切换到 main 分支
35+
git checkout main
36+
37+
# 确保 source/wiki 目录存在
38+
mkdir -p source/wiki
39+
40+
# 清除 source/wiki 目录下的内容
41+
rm -rf source/wiki/*
42+
43+
# 复制构建的静态文件到 source/wiki 目录
44+
cp -r _book/* source/wiki/
45+
46+
# 添加所有文件到 git
47+
git add source/wiki
48+
49+
# 提交更改
50+
git commit -m "Update wiki static pages"
51+
52+
# 推送到远程 main 分支
53+
git push origin main

0 commit comments

Comments
 (0)