Skip to content

404 page should fit within theme #6

404 page should fit within theme

404 page should fit within theme #6

Workflow file for this run

name: Continuous integration
on:
push:
paths-ignore:
- README.md
jobs:
build:
name: Build site
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3.0.0
with:
hugo-version: latest
- name: Build
run: hugo --minify --logLevel info
- name: Upload artifact
#if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ github.run_number }}
path: public/
retention-days: 1