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

Commit 53de636

Browse files
committed
排障
1 parent 99e80b9 commit 53de636

File tree

1 file changed

+9
-21
lines changed

1 file changed

+9
-21
lines changed

.github/workflows/build-wiki.yml

+9-21
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,16 @@ jobs:
2626
- name: Build GitBook
2727
run: gitbook build . # 构建 GitBook 静态文件
2828

29+
- name: Prepare to Deploy
30+
run: |
31+
git checkout main # 切换到 main 分支
32+
mkdir -p source/wiki # 确保目录存在
33+
2934
- name: Deploy to Main Branch
3035
run: |
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
36+
cp -rf _book/* source/wiki/ # 复制静态文件
37+
git config --local user.email "action@github.com"
38+
git config --local user.name "GitHub Action"
4739
git add source/wiki
48-
49-
# 提交更改
50-
git commit -m "Update wiki static pages"
51-
52-
# 推送到远程 main 分支
40+
git commit -m "Update wiki static pages" || true # 如果没有更改则不提交
5341
git push origin main

0 commit comments

Comments
 (0)