I’m trying to set up my site using hugo extended. Here’s an example of a header for one of my pages
+++
title = "My First Post"
date = "2022-08-27T22:23:33-05:00"
author = ""
authorTwitter = "" #do not include @
tags = ["programming"]
keywords = ["twitter"]
description = ""
showFullContent = false
readingTime = true
hideComments = false
draft = false
+++
and my config.yaml
theme: terminal
languageCode: en-us
title: Hugo
baseURL: "https://thatnerduknow.github.io/"
params:
  contentTypeName: "posts"
  themeColor: "green"
  showMenuItems: 2
  centerTheme: true
  fullWidthTHeme: false
  autoCover: true
  showLastUpdated: true
  enableGitInfo: true
  readingTime: true
  Toc: true
  TocTitle: "Table of Contents"
menu:
  main:
    - identifier: about
      name: About
      url: /about/
    - identifier: tags
      name: Tags
      url: /tags/
and here’s my github actions file:
name: GitHub Pages
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.101.0'
          # 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.GITHUB_TOKEN }}
          publish_dir: ./public
I see no errors in the logs for github actions yet no pages are generated. I’m certain none of my pages are in draft mode and I’m certain that my baseurl is set correctly. I’m at a loss as to how to proceed and any help would be appreciated
