35 lines
730 B
YAML
35 lines
730 B
YAML
|
name: Deploy to GitHub Pages
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- hugo
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-18.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Build Link Index
|
||
|
uses: jackyzha0/hugo-obsidian@v1.4
|
||
|
with:
|
||
|
input: content
|
||
|
output: data
|
||
|
|
||
|
- name: Setup Hugo
|
||
|
uses: peaceiris/actions-hugo@v2
|
||
|
with:
|
||
|
hugo-version: '0.79.1'
|
||
|
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
|
||
|
cname: quartz.jzhao.xyz
|