Jenkins使用shell脚本启动gitbook
时间: 2024-04-28 08:19:58 浏览: 128
jenkins的windows节点执行shell脚本
可以使用以下 Shell 脚本在 Jenkins 中启动 GitBook:
```
#!/bin/bash
# 克隆 Git 仓库
git clone https://github.com/username/repo.git
# 进入仓库目录
cd repo
# 安装 GitBook
npm install gitbook-cli -g
# 安装依赖
gitbook install
# 构建书籍
gitbook build
# 将构建好的静态网站复制到指定目录
cp -R _book /var/www/html/gitbook
# 重启 Apache 服务器
service apache2 restart
```
以上脚本会执行以下操作:
1. 克隆 Git 仓库到本地。
2. 进入仓库目录。
3. 安装 GitBook。
4. 安装依赖。
5. 构建书籍。
6. 将构建好的静态网站复制到指定目录。
7. 重启 Apache 服务器。
你可以将以上脚本保存为一个 Shell 脚本文件,例如 `build_gitbook.sh`,然后在 Jenkins 中执行该脚本文件即可。记得在 Jenkins 中设置好 Git 仓库地址、构建触发器等相关配置。
阅读全文