irpf90/.gitlab-ci.yml

21 lines
361 B
YAML

# All available Hugo versions are listed here: https://gitlab.com/pages/hugo/container_registry
image: registry.gitlab.com/pages/hugo:latest
variables:
GIT_SUBMODULE_STRATEGY: recursive
test:
script:
- hugo -s website -d ../public
except:
- web
pages:
script:
- hugo -s website -d ../public
artifacts:
paths:
- public
only:
- web