From ead474337876fa6482e60d90aeb35f541639177c Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Wed, 8 Apr 2020 20:21:15 +0000 Subject: [PATCH] Add new file --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6a31c5b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +pages: + script: + - mkdir -p docs + - cd docs + - apt install doxygen texlive-base texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended python3-pip + - doxygen ./Doxyfile-mcss + - cd ./latex + - make + - cp refman.pdf ../html/ConnectFour.pdf + - cd ../ + - mv ./html/ ../public/ + artifacts: + paths: + - public + only: + - master \ No newline at end of file