前言
为什么要使用GitHub Actions自动编译部署hexo博客?
本博客是如何搭建的
本地部署 | GitHub Actions |
---|
需手动执行 hexo clean && hexo g -d | 代码推送后自动触发编译部署 |
本地需安装 Node.js/Hexo 环境 | 云端自动配置纯净构建环境 |
编译依赖本地电脑性能 | 利用 GitHub 服务器资源,速度更快 |
多设备工作需同步环境 | 任何设备只需 git push 即可更新博客 |
具体实现方案
两个独立仓库:
自动化流程:
- 当向
hexo-source
推送代码时,自动触发 GitHub Actions 完成以下操作:- 安装 Node.js 环境
- 编译 Hexo 生成静态文件
- 将生成的
public/
内容推送到 username.github.io
仓库
详细配置步骤
1. 创建SSH密钥对
1
| ssh-keygen -t rsa -b 4096 -f ~/.ssh/hexo_deploy_key
|
2. 配置密钥
- 将公钥(
hexo_deploy_key.pub
)添加到静态网页仓库的Deploy Keys - 将私钥(
hexo_deploy_key
)添加到源代码仓库的Secrets- 命名为
HEXO_DEPLOY_PRIVATE_KEY
3. 配置Hexo
在_config.yml
中设置部署目标git静态网页仓库:
1 2 3 4
| deploy: type: git repo: git@github.com:yourname/yourname.github.io.git branch: main
|
4.创建GitHub Actions工作流
在博客文件目录新建/.github/workflows/deploy.yml
内容示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| name: Deploy hexo site to Pages
on: push: branches: [main] paths: - '*.json' - '**.yml' - '**/source/**' - '**/scripts/**'
permissions: contents: read pages: write id-token: write
defaults: run: shell: bash
jobs: build: timeout-minutes: 30 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} submodules: recursive - name: Use Node.js 20 uses: actions/setup-node@v4 with: node-version: "20" - name: Cache NPM dependencies uses: actions/cache@v4 with: path: node_modules key: ${{ runner.OS }}-npm-cache restore-keys: | ${{ runner.OS }}-npm-cache - name: Install Dependencies run: npm install - name: Install Hexo-cli run: | npm install -g hexo-cli --save echo "install hexo successful" - name: Build Blog run: | hexo clean hexo generate echo "build blog successful" - name: Set ssh Permission env: ACTION_DEPLOY_KEY: ${{ secrets.HEXO_DEPLOY_KEY }} run: | rm -rf /home/runner/.ssh mkdir -p /home/runner/.ssh/ echo "$ACTION_DEPLOY_KEY" > /home/runner/.ssh/id_rsa chmod 700 /home/runner/.ssh chmod 600 /home/runner/.ssh/id_rsa ssh-keyscan github.com >> /home/runner/.ssh/known_hosts - name: Deploy to Github run: | git config --global user.email "deploy@qq.com" git config --global user.name "deploy" hexo deploy - run: echo "Deploy Successful!"
|
echo "$ACTION_DEPLOY_KEY" > /home/runner/.ssh/id_rsa
实现从secret中读取ssh私钥,从而获取推送到静态网页仓库的权限
参考文章
- 利用Github Action实现Github到Gitee的持续同步 - SSgeek
- 使用GitHub Actions自动编译部署hexo博客 - Fungit