Add drone ci config

main
Georg Krause 2020-07-16 10:38:26 +02:00
parent 1a67477684
commit 9b03a4e29e
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
1 changed files with 14 additions and 0 deletions

14
.drone.yml Normal file
View File

@ -0,0 +1,14 @@
---
kind: pipeline
type: exec
name: build
steps:
- name: pull
commands:
- git submodule init
- git submodule update
- cd cryptpad
- git checkout $(git ls-remote -q --tags --refs --sort="committerdate" | tail -n1 | cut -d "/" -f3-)
- cd ..
- docker build -t gcrkrause/cryptpad . --no-cache