From 7808feaeb17d0492b3142e6ebaa892ddc5978dbf Mon Sep 17 00:00:00 2001 From: Alexandre MEYER <alexandre.meyer@univ-lyon1.fr> Date: Thu, 17 Nov 2022 07:06:21 +0000 Subject: [PATCH] Add new file --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..db0dabe --- /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 -- GitLab