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