diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..db0dabea7ca7a1b51cd2ca3356e9cb3b32259184 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +# This file is a template, and might need editing before it works on your project. +# Full project: https://gitlab.com/pages/plain-html +pages: + stage: deploy + script: + - apt -y update && apt -y install python3-pip + - pip3 install mkdocs + - cd site-web + - export LC_ALL=C.UTF-8 + - export LANG=C.UTF-8 + - mkdocs build + - mv site ../public + artifacts: + paths: + - public + only: + - master