Skip to content

fix: lsfr test, action (#21) #55

fix: lsfr test, action (#21)

fix: lsfr test, action (#21) #55

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- name: Set up Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.153.0'
extended: true
- name: Build
run: |
hugo --minify
- name: Copy CNAME into ./public
run: cp CNAME ./public
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public