add drone.yml

This commit is contained in:
tsmethurst 2021-08-10 18:32:55 +02:00
parent 6acd410426
commit 2df77e4ffa

20
.drone.yml Normal file
View file

@ -0,0 +1,20 @@
---
kind: pipeline
type: docker
name: dockerpublish
steps:
- name: publish image
image: plugins/docker
settings:
auto_tag: true
username:
from_secret: gts_docker_username
password:
from_secret: gts_docker_password
repo: superseriousbusiness/gotosocial
tags: latest
when:
event:
exclude:
- pull_request
---