Skip to content

updated copyright

updated copyright #11

Workflow file for this run

name: Build and Deploy to gh-pages
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: true # needed for theme
fetch-depth: 0 # Fetch all history for dates/metadata
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.160.0'
extended: true
- name: Build Site
run: hugo --minify
- name: Deploy
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages