Skip to content
Snippets Groups Projects
.gitlab-ci.yml 286 B
# All available Hugo versions are listed here: https://gitlab.com/pages/hugo/container_registry
image: debian:sid-slim

before_script:
  - apt update
  - apt -y install hugo

pages:
  script:
  - rm -rvf resources public
  - hugo
  artifacts:
    paths:
    - public
  only:
  - master