Skip to content

Add more details to header and footer elements #22

Add more details to header and footer elements

Add more details to header and footer elements #22

Workflow file for this run

name: Build and deploy website
on:
push:
branches:
- hugo
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install node_modules
run: npm ci
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.124.1'
- name: Build
run: hugo --minify
env:
NODE_ENV: production
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: release
FOLDER: public
CLEAN: true