用Hugo构建我的Blog
1.环境准备 1 2 3 4 5 6 7 # 安装 hugo brew install hugo # 查看版本 hugo version # 创建仓库 cd Desktop hugo new site blog --format=yaml # 配置文件使用 yaml 格式 2.引用主题 1 2 cd blog git clone https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod --depth=1 3.启动服务 1 2 cd Desktop/blog hugo server 4.新建文章 1 hugo new posts/my-first-post.md 5.github 创建仓库 创建一个名为 weilanjin.github.io 的仓库 5.1 创建自动化脚本 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 name: Deploy Hugo site to GitHub Pages # 工作流名称 on: push: branches: - main # 监听 main 分支上的推送操作 jobs: deploy: runs-on: ubuntu-latest # 使用最新的 Ubuntu 作为运行环境 steps: - name: Checkout Repository uses: actions/checkout@v3 # 拉取代码,包括子模块 - name: Install Hugo uses: peaceiris/actions-hugo@v2 # 安装 Hugo with: hugo-version: 'latest' # 使用最新版本的 Hugo - name: Build Hugo Site run: hugo # 运行 hugo 生成静态站点 - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 # 使用 gh-pages 部署 with: github_token: ${{ secrets.GITHUB_TOKEN }} # GitHub 提供的安全令牌 publish_dir: ./public # Hugo 生成的静态站点目录 publish_branch: gh-pages # 部署到 gh-pages 分支 5.2 启用 GitHub Pages 的 Actions 写入权限 进入你的 GitHub 仓库 打开 Settings → Actions → General 在 Workflow permissions 里选择: ✅ Read and write permissions(⚠ 默认是 Read-only) ...