This repository was archived by the owner on Jun 30, 2024. It is now read-only.
File tree 2 files changed +54
-1
lines changed
2 files changed +54
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Build Wiki and Deploy to Main
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - wiki # 触发条件,当 wiki 分支有 push 事件时触发
7
+
8
+ jobs :
9
+ build-and-deploy :
10
+ runs-on : ubuntu-latest # 运行环境
11
+
12
+ steps :
13
+ - name : Checkout Wiki Branch
14
+ uses : actions/checkout@v2
15
+ with :
16
+ ref : wiki # 检出 wiki 分支
17
+
18
+ - name : Set up Node.js
19
+ uses : actions/setup-node@v2
20
+ with :
21
+ node-version : ' 10' # 选择 Node.js 版本
22
+
23
+ - name : Install GitBook
24
+ run : npm install -g gitbook-cli # 安装 gitbook-cli
25
+
26
+ - name : Build GitBook
27
+ run : gitbook fetch && gitbook install && gitbook build # 构建 GitBook 静态文件
28
+
29
+ - name : Deploy to Main Branch
30
+ 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
+ # 创建一个新分支,如果已存在则切换到该分支
35
+ git checkout main || git checkout -b 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 "Deploy GitBook to main branch"
51
+
52
+ # 推送到远程 main 分支
53
+ git push origin main
Original file line number Diff line number Diff line change 2
2
3
3
<h1 align =" center " >
4
4
<br >
5
- <a href =" https://hypiworldcrs-blockhaity.netlify.app " alt =" logo " ><img src =" image/logo.png " width =" 150 " /></a >
5
+ <a href =" https://hypiworldcrs-blockhaity.pages.dev " alt =" logo " ><img src =" image/logo.png " width =" 150 " /></a >
6
6
<br >
7
7
Hypiworld社区资源站
8
8
<br >
You can’t perform that action at this time.
0 commit comments