2024-06-15 05:04:36 +00:00
|
|
|
name: Hugo Publish CI
|
2024-06-11 18:46:54 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-06-12 04:49:06 +00:00
|
|
|
|
2024-06-11 18:46:54 +00:00
|
|
|
- name: Checkout code
|
2024-06-12 03:33:17 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-06-12 03:44:12 +00:00
|
|
|
with:
|
2024-06-13 05:01:02 +00:00
|
|
|
persist-credentials: false
|
2024-06-12 03:44:12 +00:00
|
|
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
|
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
2024-06-11 18:46:54 +00:00
|
|
|
|
|
|
|
- name: Build site with Hugo
|
2024-06-12 03:44:12 +00:00
|
|
|
uses: peaceiris/actions-hugo@v3
|
2024-06-11 18:46:54 +00:00
|
|
|
with:
|
2024-06-13 02:27:58 +00:00
|
|
|
hugo-version: 'latest'
|
2024-06-12 03:46:09 +00:00
|
|
|
extended: true
|
2024-06-11 18:46:54 +00:00
|
|
|
|
2024-06-12 03:44:12 +00:00
|
|
|
- name: Build
|
|
|
|
run: hugo --minify
|
2024-06-11 18:46:54 +00:00
|
|
|
|
2024-06-12 03:44:12 +00:00
|
|
|
- name: Deploy
|
2024-06-12 03:55:45 +00:00
|
|
|
uses: peaceiris/actions-gh-pages@v4
|
2024-06-11 18:46:54 +00:00
|
|
|
with:
|
2024-07-03 21:17:40 +00:00
|
|
|
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
2024-06-13 02:33:02 +00:00
|
|
|
publish_dir: ./public
|
|
|
|
publish_branch: gitea-pages
|