From 0aabf64eaecfb8b929db335481e79186fe9b9372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20COURALET?= Date: Mon, 2 Oct 2023 09:05:52 +0200 Subject: [PATCH] Add build --- .drone.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .drone.yml 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