From: Kevin McCarthy Date: Mon, 15 Jan 2018 22:20:28 +0000 (-0800) Subject: Add pages to .gitlab-ci.yml X-Git-Tag: mutt-1-10-rel~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee28581a17d68a782477cb8663359bb89315415b;p=mutt Add pages to .gitlab-ci.yml Use this to regenerate the manual and store it in the pages for the project. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 46a9e647..46837193 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,9 +2,23 @@ image: mutt/ubuntu:16.04 stages: - build + - deploy build: stage: build script: - ./prepare --disable-dependency-tracking --enable-gpgme --enable-sidebar --enable-compressed --enable-pop --enable-imap --enable-smtp --enable-debug --enable-hcache - make -j + +pages: + stage: deploy + script: + - ./prepare + - make update-doc + - mkdir -p public + - cp doc/manual.html public/manual-dev.html + artifacts: + paths: + - public + only: + - master