Skip to content

Merge pull request #13 from arran4/update-template-5714712776788243013 #61

Merge pull request #13 from arran4/update-template-5714712776788243013

Merge pull request #13 from arran4/update-template-5714712776788243013 #61

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main # Set a branch name to trigger deployment
pull_request:
jobs:
deploy:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
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: 'latest'
extended: true
- name: Cache Hugo resources
uses: actions/cache@v4
with:
path: resources
key: ${{ runner.os }}-hugoresources-${{ hashFiles('**/config.toml') }}
restore-keys: |
${{ runner.os }}-hugoresources-
- name: Build
run: hugo --gc --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public