diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..236f427 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +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 \ No newline at end of file