mirror of
https://gitlab.com/ahoneybun/ahoneybun-net.git
synced 2026-02-10 06:47:24 -07:00
19 lines
318 B
YAML
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
|