diff options
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..aafa325 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,21 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: build + image: rust:latest + commands: + - cargo check + + - name: docker + image: plugins/docker + settings: + username: robot$drone + password: + from_secret: docker_password + repo: reg.devcara.com/glitch/bot + registry: reg.devcara.com + auto_tag: true + when: + event: tag |