Hugo网站建设
安装 Hugo #
下载地址:https://github.com/gohugoio/hugo/releases
创建网站 #
hugo new site book
cd book
git init
git submodule add https://github.com/alex-shpak/hugo-book themes/hugo-book
本地调试 #
hugo server --disableFastRender --minify --ignoreCache
github actions #
mkdir -p .github/workflows
touch .github/workflows/build.yml
name: Build
on:
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
submodules: true # 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: '0.123.7'
# 是否启用 hugo extend
extended: true
- name: Build
run: hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GH_PAGE_ACTION_TOKEN }}
publish_dir: ./public
github pages #
可以在项目的 Settings 中开启 Pages 服务,然后选择 Branch 为gh-pages
即可。
如果想要定制域名,可以参考官方文档 About custom domains and GitHub Pages