☙◦ The Tablet ❀ GamerGirlandCo ◦❧
92f98f2b3f
All checks were successful
Deploy / deploy (push) Successful in 46s
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: https://gitea.com/actions/checkout@v4
|
|
with:
|
|
token: '${{ secrets.btfash }}'
|
|
submodules: true
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
- name: Build Link Index
|
|
uses: https://github.com/jackyzha0/hugo-obsidian@v2.20
|
|
with:
|
|
index: true
|
|
input: content
|
|
output: assets/indices
|
|
root: .
|
|
|
|
- name: Setup Hugo
|
|
uses: https://github.com/peaceiris/actions-hugo@v2
|
|
with:
|
|
hugo-version: '0.112.4'
|
|
extended: true
|
|
|
|
- name: Build
|
|
run: hugo --minify
|
|
|
|
- name: Deploy
|
|
uses: https://github.com/peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITEA_TOKEN }}
|
|
publish_dir: ./public
|
|
publish_branch: deploy # deploying branch
|
|
cname: tablet.sh
|