joinpeertube/.gitlab-ci.yml
2018-02-28 16:52:25 +01:00

22 lines
365 B
YAML

image: hatsoftwares/hugo-vnu:latest
stages:
- validity-check
- deploy
validity-check:
stage: validity-check
script:
- hugo
- find public -name index.html | xargs java -jar /opt/dist/vnu.jar
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master