Skip to content

v1.0.8

v1.0.8 #9

Workflow file for this run

name: Release Workflow
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: main
submodules: recursive
- uses: ./.github/actions/initialize
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.99.1'
extended: true
- name: Build
run: |
hugo version
hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages