从零到一带你撸个博客

使用 Hexo + Github Page + Github Actions 从零到一带你撸个博客。

环境安装

安装Git

官网 根据你的系统选择相应的安装文件,安装过程就不说了。

安装NodeJS

官网 下载一个LTS版本,根据你的系统选择相应的安装文件,安装过程就不说了。

安装Hexo

npm install -g hexo

注册Github账号(熟悉Github的同学请直接跳过)

注册Github账号

传送门直达

创建SSH Key(已创建请直接跳过)

中间会要求你输入密码,直接回车表示没有密码

1
ssh-keygen

输入下面的命令

1
cat ~/.ssh/id_rsa.pub

复制命令输出的内容

为了不用每次输入密码,配置GithubSSH

配置SSH菜单

选择 SSH and GPG keys,点击 new SSH key

配置SSH

在红框内粘贴之前复制的内容,点击Add SSH key

添加SSH

运行你的Hexo博客

先让博客运行

创建目录(以Mac为例,Windows用户,请使用Git bash,下面大部分命令应该都是支持的)

1
mkdir ~/blog && cd ~/blog

初始化Hexo博客

1
hexo init .

启动Hexo预览

1
hexo s

这时候就可以在 http://localohost:4000 打开你的博客了

Hexo博客首页

写下你的第一篇日志

另起一个终端窗口

1
hexo new post 我的第一篇日志

刷新页面,你的首页就会出现你的第一篇日志

Hexo我的第一篇日志

修改第一篇日志内容

打开你的博客目录,在/source/_posts/目录下,你可以看到我的第一篇日志.md。编辑他,刷新你的网页,你就可以在网页上看到最新的内容。

日志编写格式是Markdown,具体语法我给给传送门,不做赘述

基础用法

进阶用法

发布博客

创建一个Repository(已创建请直接跳过)

点击右上角的+

创建Repository菜单

输入Repository name 然后点击Create Repository

创建Repository

把博客源文件上传到Github

设置远程地址

这些操作都得在你的博客目录下完成,本案例中的目录是~/blog

1
git init

还记得刚刚在Github上创建的Repository吗?

复制Repository地址

HTTPS OR SSH 选择 SSH,然后复制红色框框里面的内容

1
git remote add origin 刚刚复制的Repository地址

添加缓存文件

1
git add .

提交源代码

1
git commit -m "init"

上传博客源码

1
git push --set-upstream origin master

修改发布方式

修改配置文件

找到博客目录下的 _config.yml 文件,找到最下方的 deploy,修改为

1
2
3
4
deploy:
type: git
repo: 你的Repository地址,上面有提到过
branch: gh-pages

安装插件

先安装Git发布插件

1
npm install hexo-deployer-git --save

发布博客

1
hexo d

等待执行完毕,发布成功

配置Github Page

  1. 可以在红色小框框内看到你的可访问网址。
  2. Source 选择 Branch:gh-pages

配置page

自动化发布博客

发布基本上可以说做完了,接下来要简化我们的工作流程。

我们不想每次都在客户端执行 hexo d 去发布最新的博客。能不能有一个CI工具帮帮我们呢?

答案是:可以的

Github Actions

注意哦,这个是比较隐私的部分,需要保证自己的私钥安全

复制你的SSH私钥

1
cat ~/.ssh/id_rsa

复制命令输出的内容

配置Secrets

点击Settings > Secrets > Actions > New repository secret

配置自动发布参数

注意Name需要填写DEPLOY_KEYValue就是刚刚复制的cat ~/.ssh/id_rsa输出的内容

配置自动发布参数

添加自动发布文件

创建文件夹.github/workflows/

1
mkdir -p .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
name: Deploy

on: [push]

jobs:
build:
runs-on: ubuntu-latest
name: Deploy hexo blog
steps:
- name: Checkout
uses: actions/checkout@master
with:
submodules: true

- name: Cache node modules
uses: actions/cache@v1
id: cache
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci

- name: Deploy
id: deploy
uses: sma11black/[email protected]
with:
deploy_key: ${{ secrets.DEPLOY_KEY }}
user_name: e-sen # (or delete this input setting to use bot account)
user_email: [email protected] # (or delete this input setting to use bot account)
commit_msg: ${{ github.event.head_commit.message }} # (or delete this input setting to use hexo default settings)
# Use the output from the `deploy` step(use for test action)

- name: Get the output
run: |
echo "${{ steps.deploy.outputs.notify }}"

大功告成!

以后你就可以直接在你的Repository里面修改你的文件。

比如说新建一篇日志,就直接在sources/_posts下面 Add file > Create new file,然后按照Hexo需要的格式(注意,要使用.md后缀,用Markdown的语法来书写你的日志),书写你的日志。

保存之后,大概需要几分钟,你的博客就会出现新的内容了(当然,要记得刷新)。


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!