diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..131ae9c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: python:3.9 + +pages: + stage: deploy + only: + - master + script: + - pip install mkdocs-material + - mkdocs build --site-dir public + artifacts: + paths: + - public \ No newline at end of file