简单写写 0 v0
需求
- 一个简单方便操作的个人博客,不需要太多特性,力求简洁
- 平时记录点学习过的知识点
- 发牢骚
选型
详细流程(基于 fuji)
- 建仓库 <username>.github.io.git
- 拉取到本地,hugo 建站,添加主题
$ git clone <git> && \
cd <git_dir> && \
git checkout -b hugo && \
hugo new site . && \
git submodule add https://github.com/dsrkafuu/hugo-theme-fuji.git themes/fuji
- 根据 fuji 文档简单操作
然后把
exampleSite
复制出来,并修改config.toml
复用了一下 exampleSite
里面的东西
- 配置自动部署
当前的分支是 hugo
,我希望在我往这个分支 push 的时候,能自动构建并将 hugo 生成的静态页部署到主分支(master)
所以使用了下 GitHub Action
(参考了王路飞的知乎):
# .github/workflows/deploy.yml
name: Update sslime336.github.io
on:
push:
branches:
- hugo
jobs:
deploy2master:
name: Build & Deploy
runs-on: ubuntu-latest
steps:
- name: Check out source code on branch hugo
uses: actions/checkout@v3
with:
ref: hugo
submodules: recursive # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: latest
- name: Build
run: hugo
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTION_DEPLOY_KEY }}
external_repository: sslime336/sslime336.github.io # Page 仓库
publish_branch: master # Page 仓库的分支
publish_dir: ./public # 静态网页路径
commit_message: ${{ github.event.head_commit.message }}
这里唯一需要注意一下的是 deploy_key: ${{ secrets.ACTION_DEPLOY_KEY }}
这里使用 external_repository 并不合适,以后再改 :P
准备自动部署:
- 在项目根目录新建
.github/workflows/deploy.yml
- cp 上面的内容并修改
- 处理
deploy_key
, 点我查看
git add . && git commit -m "xxx" && git push -set-upstream origin hugo