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.
This commit is contained in:
parent
9b12f1e91a
commit
75f37a940b
1 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,20 @@
|
||||||
|
stages:
|
||||||
|
- check
|
||||||
|
- deploy
|
||||||
|
|
||||||
Repoman:
|
Repoman:
|
||||||
|
stage: check
|
||||||
script:
|
script:
|
||||||
- repoman -x -p
|
- repoman -x -p
|
||||||
|
|
||||||
|
pages:
|
||||||
|
stage: deploy
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
script:
|
||||||
|
- mkdir .public
|
||||||
|
- mv * .public
|
||||||
|
- mv .public public
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
|
Loading…
Reference in a new issue