1
0
mirror of https://github.com/shimunn/gitredditor.git synced 2023-11-17 18:42:43 +01:00
This commit is contained in:
shimunn
2019-05-05 17:23:46 +02:00
commit e26ee189d7
4 changed files with 1676 additions and 0 deletions

27
.drone.yml Normal file
View File

@@ -0,0 +1,27 @@
kind: pipeline
name: default
steps:
- name: build
image: rust:1.34.1
commands:
- cargo build
- name: build_relase
image: rust:1.34.1
commands:
- cargo build --release
when:
event:
- tag
- name: dockerize
image: plugins/docker
settings:
repo: gitredditor
registry: hub.docker.com
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event:
- tag