mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-05 16:23:39 +00:00
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: Publish Hugo Site
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
publish:
|
|
name: Publish Hugo Site
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "18"
|
|
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: Setup Hugo
|
|
uses: peaceiris/actions-hugo@v2
|
|
with:
|
|
hugo-version: "0.120.3"
|
|
extended: true
|
|
|
|
- run: npm ci
|
|
- run: hugo --minify
|
|
|
|
- name: Deploy to GitHub Pages
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_branch: generated
|