Merge branch '87-add-ci-job-for-pages' into 'master'
Added pages job to the build process, so the while overlay tree should become vi… Closes #87 See merge request !155
This commit is contained in:
commit
bc79d4fc6a
1 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,20 @@
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue