Featured image of post 【Hugo之路 3】使用github page上线站点

【Hugo之路 3】使用github page上线站点

  1. 创建新的 github 仓库
  2. 使用 hugo 生成静态网站:hugo -D

在站点根目录下就会生成public文件夹,这个就是生成的静态网站的全部内容了

  1. 初始化 git

xxx/xxx.git修改为你的仓库,通过 ssh 要配置ssh keys,百度一下就知道了

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
cd public
git init

# 连接到github仓库
git remote add origin [email protected]:xxx/xxx.git
git branch -M main

# 将静态网站上传到github仓库
git add .
git commit -m "hello hugo"
git push -u origin main
  1. 启用 github page

    1. Settings -> Pages -> Source 选择 main
    2. Settings -> Pages -> Custom domain 可以设置自己的域名
  2. 等待 Actions 构建并部署生效即可

Licensed under CC BY-NC-SA 4.0
最后更新于 Apr 01, 2022 05:31 CST
comments powered by Disqus
Built with Hugo
主题 StackJimmy 设计