Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 476 B
image: python:3.8
pages:
    script:
        - apt update && apt install git -y
        - pip install mkdocs
        - pip install mkdocs-material
        - pip install plantuml-markdown
        - git clone https://github.com/g-provost/lightgallery-markdown.git
        - cd lightgallery-markdown
        - python setup.py install
        - cd ..
        - mkdocs --version
        - mkdocs build
    artifacts:
        paths:
            - public
    tags:
        - general