From 512a24e696dbdc7dcd441bb62cfad15f6f5c8d8c Mon Sep 17 00:00:00 2001 From: n0F4x <ggabor2002@gmail.com> Date: Thu, 20 Jun 2024 12:18:24 +0200 Subject: [PATCH] Try integrating docs with gitlab Pages --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4938204 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +pages: + stage: deploy + image: python:3.12.2 + script: + - pip install mkdocs-material==9.5.27 + - mkdocs build --site-dir public + artifacts: + paths: + - public + only: + - master -- GitLab