ericxliu-me/.gitea/workflows/publish.yaml

34 lines
786 B
YAML
Raw Normal View History

2024-06-11 18:48:20 +00:00
name: CI Hugo Publish
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-06-12 04:56:39 +00:00
personal_token: ${{ secrets.PERSONAL_TOKEN}}
2024-06-13 02:33:02 +00:00
publish_dir: ./public
publish_branch: gitea-pages