Added basic drone CI

This commit is contained in:
2020-03-25 22:26:29 +00:00
parent aec902dfed
commit 7062239385

14
.drone.yml Normal file
View File

@ -0,0 +1,14 @@
---
kind: pipeline
type: docker
name: mkdocs
steps:
- name: mkdocs
image: python:alpine
commands:
- pip install mkdocs
- mkdocs build
- mv site public
...