Skip to content

Adjust tags and categories #46

Adjust tags and categories

Adjust tags and categories #46

Workflow file for this run

name: "Deploy to gh-pages branch"
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Pull Repo
uses: actions/checkout@v2
with:
submodules: true # fetch themes
fetch-depth: 0 # pull all commits so .GitInfo can find info for all files
- name: Get Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "latest"
extended: true
- name: Build site
run: hugo --minify --verbose
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages