47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
name: github pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # Set a branch that will trigger a deployment
|
|
pull_request:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
- name: Setup Hugo
|
|
uses: peaceiris/actions-hugo@v2
|
|
with:
|
|
hugo-version: '0.91.2'
|
|
extended: true
|
|
|
|
# - name: Setup Node
|
|
# uses: actions/setup-node@v3
|
|
# with:
|
|
# node-version: '16'
|
|
# cache: 'npm'
|
|
# The action defaults to search for the dependency file (package-lock.json,
|
|
# npm-shrinkwrap.json or yarn.lock) in the repository root, and uses its
|
|
# hash as a part of the cache key.
|
|
# https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-data
|
|
# cache-dependency-path: '**/package-lock.json'
|
|
- name: Build
|
|
working-directory: docs
|
|
run: |
|
|
npm install postcss-cli
|
|
hugo --minify
|
|
pwd
|
|
ls -l
|
|
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
if: ${{ github.ref == 'refs/heads/main' }}
|
|
with:
|
|
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
publish_dir: ./docs/public |