2021-07-18 18:54:00 +03:00
|
|
|
name: Deploy to GitHub Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- hugo
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
2022-10-25 23:14:06 +03:00
|
|
|
runs-on: ubuntu-20.04
|
2021-07-18 18:54:00 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-05-03 08:51:15 +03:00
|
|
|
with:
|
|
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
2021-07-18 18:54:00 +03:00
|
|
|
|
|
|
|
- name: Build Link Index
|
2023-03-16 20:33:01 +03:00
|
|
|
uses: jackyzha0/hugo-obsidian@v2.20
|
2021-07-18 18:54:00 +03:00
|
|
|
with:
|
2021-08-27 21:08:11 +03:00
|
|
|
index: true
|
2021-07-18 18:54:00 +03:00
|
|
|
input: content
|
2022-03-04 05:25:30 +03:00
|
|
|
output: assets/indices
|
2022-02-28 18:14:55 +03:00
|
|
|
root: .
|
2021-07-18 18:54:00 +03:00
|
|
|
|
|
|
|
- name: Setup Hugo
|
|
|
|
uses: peaceiris/actions-hugo@v2
|
|
|
|
with:
|
2022-04-06 07:40:59 +03:00
|
|
|
hugo-version: '0.96.0'
|
2021-07-18 18:54:00 +03:00
|
|
|
extended: true
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: hugo --minify
|
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./public
|
|
|
|
publish_branch: master # deploying branch
|
2022-02-28 18:14:55 +03:00
|
|
|
cname: quartz.jzhao.xyz
|