summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar tsmethurst <tobi.smethurst@protonmail.com>2021-08-10 18:32:55 +0200
committerLibravatar tsmethurst <tobi.smethurst@protonmail.com>2021-08-10 18:32:55 +0200
commit2df77e4ffa73774431d7070ba9280087387805a6 (patch)
treecee05d8f7eaf1e1d32a635c4023496e834a53c4c
parentBugfixerino (#133) (diff)
downloadgotosocial-2df77e4ffa73774431d7070ba9280087387805a6.tar.xz
add drone.yml
-rw-r--r--.drone.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 000000000..b00e274fb
--- /dev/null
+++ b/.drone.yml
@@ -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
+---