This commit is contained in:
Aaron Honeycutt 2025-11-19 16:19:26 -07:00
parent be3dd2a6ec
commit bb35416fd6

20
.gitlab-ci.yml Normal file
View file

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