ahoneybun.net/.gitlab-ci.yml
Aaron Honeycutt 404be26e72 fix CI
2025-11-19 16:30:38 -07:00

19 lines
318 B
YAML

image: nixos/nix:latest
stages:
- build
variables:
NIX_CONFIG: "experimental-features = nix-command flakes"
before_script:
- git submodule update --init --recursive
build-zola-site:
stage: build
script:
- nix develop --command zola build
artifacts:
paths:
- public/
expire_in: 1 week