gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 2df77e4ffa73774431d7070ba9280087387805a6
parent 6acd410426f2f8941a0dbec4bfe07c2a94ce62b7
Author: tsmethurst <tobi.smethurst@protonmail.com>
Date:   Tue, 10 Aug 2021 18:32:55 +0200

add drone.yml

Diffstat:
A.drone.yml | 20++++++++++++++++++++
1 file changed, 20 insertions(+), 0 deletions(-)

diff --git a/.drone.yml 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 +---