Jafner.net/.github/workflows/Jafner.dev_hugo.yaml

75 lines
1.9 KiB
YAML
Raw Normal View History

name: Build and Deploy Jafner.dev with Hugo
2024-05-28 19:06:21 -07:00
on:
push:
branches: [ main ]
paths:
2024-07-18 19:11:08 -07:00
- 'sites/Jafner.dev/**'
2024-05-28 19:06:21 -07:00
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
2024-07-18 19:11:08 -07:00
working-directory: "sites/Jafner.dev"
2024-05-28 19:06:21 -07:00
env:
2024-05-28 19:12:38 -07:00
HUGO_VERSION: 0.121.2
2024-05-28 19:06:21 -07:00
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass
run: sudo snap install dart-sass
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
2024-05-28 19:06:21 -07:00
fetch-depth: 0
path: 'sites/Jafner.dev'
2024-05-28 19:06:21 -07:00
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
with:
path: 'sites/Jafner.dev'
2024-05-28 19:06:21 -07:00
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
TZ: America/Los_Angeles
run: |
hugo \
--gc \
--minify \
--baseURL "https://jafner.dev/"
2024-05-28 19:06:21 -07:00
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'sites/Jafner.dev/.public'
2024-05-28 19:06:21 -07:00
deploy:
environment:
name: github-pages
2024-05-28 23:31:13 -07:00
url: https://jafner.dev/
2024-05-28 19:06:21 -07:00
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4