Skip to content

Update release notes #25

Update release notes

Update release notes #25

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
publish:
name: Publish to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v2
- name: Setup Hugo
id: setup-hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
- name: Build
id: build
run: hugo --minify
- name: Deploy
id: deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public