From 75f37a940b934cc6b144fbe3433a0faa52929e46 Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Tue, 21 Mar 2017 14:45:05 +0100 Subject: [PATCH] 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. --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6645601..5e9d5e9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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