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

34 lines
773 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
2024-06-12 04:51:43 +00:00
env:
GITHUB_SERVER_URL: "https://git.ericxliu.me"
2024-06-11 18:46:54 +00:00
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:
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-12 03:44:12 +00:00
hugo-version: '0.119.0'
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-12 04:00:49 +00:00
publish_dir: ./public