gentoo-overlay/.gitlab-ci.yml
Manuel Friedli 75f37a940b Added pages job to the build process, so the while overlay tree should become visible on linux.pages.gittr.ch/gentoo-overlay.
Perhaps some processing is needed to create HTML files, but for now I want to see if Gitlab Pages can display raw text-files / a directory structure.
2017-03-21 14:45:05 +01:00

21 lines
241 B
YAML

stages:
- check
- deploy
Repoman:
stage: check
script:
- repoman -x -p
pages:
stage: deploy
only:
- master
script:
- mkdir .public
- mv * .public
- mv .public public
artifacts:
paths:
- public