diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f027c090cce49ec63ac89c2cf93108400f032311..be659214e51d40ac4d51576b5f2233580baa714a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,13 +1,13 @@ - -image: python:3.7.1-slim +# This file is a template, and might need editing before it works on your project. +# Full project: https://gitlab.com/pages/plain-html pages: - script: - - pip install mkdocs - - pip install mkdocs-material - - mkdocs --version - - mkdocs build - artifacts: - paths: - - public - tags: - - general \ No newline at end of file + stage: deploy + script: + - mkdir .public + - cp -r * .public + - mv .public public + artifacts: + paths: + - public + only: + - master