2023-05-28 16:51:45 -04:00
|
|
|
name: Deploy to GitHub Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
|
|
|
|
- name: Build Link Index
|
2023-05-28 16:56:14 -04:00
|
|
|
uses: https://github.com/jackyzha0/hugo-obsidian@v2.18
|
2023-05-28 16:51:45 -04:00
|
|
|
with:
|
|
|
|
index: true
|
|
|
|
input: content
|
|
|
|
output: assets/indices
|
|
|
|
root: .
|
|
|
|
|
|
|
|
- name: Setup Hugo
|
2023-05-28 16:56:14 -04:00
|
|
|
uses: https://github.com/peaceiris/actions-hugo@v2
|
2023-05-28 16:51:45 -04:00
|
|
|
with:
|
|
|
|
hugo-version: '0.96.0'
|
|
|
|
extended: true
|
|
|
|
|
|
|
|
- name: Build
|
2023-05-28 18:03:21 -04:00
|
|
|
run: hugo --minify
|
2023-05-28 18:27:27 -04:00
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
publish_dir: ./public
|
|
|
|
publish_branch: deploy # deploying branch
|
|
|
|
cname: www.tablet.sh
|