diff options
| -rw-r--r-- | .drone.yml | 20 | 
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 +---  | 
