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

Commit bba4bd5

Browse files
committed
迁移workflow
1 parent 57bbc2d commit bba4bd5

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

.github/workflows/build-wiki.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h1 align="center">
44
<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>
66
<br>
77
Hypiworld社区资源站
88
<br>

0 commit comments

Comments
 (0)