Skip to content

belonging

belonging #40

Workflow file for this run

name: Deploy Hugo site to Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go (for Hugo Modules)
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.146.0'
extended: true
- name: Cache Hugo modules
uses: actions/cache@v4
with:
path: |
~/.cache/hugo
$(go env GOPATH)/pkg/mod
key: ${{ runner.os }}-hugo-${{ hashFiles('**/hugo.toml') }}
- name: Build site
run: |
hugo --minify
touch public/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./public
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4