ExtraStatic: powerful and easy publishing

Skip to content
Snippets Groups Projects
Forked from svekyll / svekyll
262 commits behind the upstream repository.
.gitlab-ci.yml 358 B
image: node:latest

tests:
  image: registry.public.do/svekyll:latest
  only:
    variables:
      - $SVEKYLL_TESTS
  script:
    - npm install
    - yarn test

pages:
  image: registry.public.do/svekyll:latest
  only:
    - master
  script:
    - npm install
    - yarn build
    - rm -rf public
    - mv build public
  artifacts:
    paths:
      - public