Skip to content

Slight redesign (#6) #7

Slight redesign (#6)

Slight redesign (#6) #7

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/[email protected]
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