Added basic drone CI

This commit is contained in:
KawaiiPunk 2020-03-25 22:26:29 +00:00
parent aec902dfed
commit 7062239385
Signed by: kawaiipunk
GPG Key ID: EDE939629F5C1A6A
1 changed files with 14 additions and 0 deletions

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
...