documentation-dsit/.drone.yml
2023-10-02 09:05:52 +02:00

16 lines
294 B
YAML

kind: pipeline
name: Build & publish main
steps:
# Build mkdocs website
- name: build
image: python:latest
commands:
- pip install mkdocs-material
- mkdocs build --site-dir public
#Publish
- name: publish
image: python:latest
commands:
- ls -alR public