forked from fbx/homebridge-freebox-home
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.drone.yml
54 lines (48 loc) · 935 Bytes
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
###
kind: pipeline
type: docker
name: linux-amd64
platform:
arch: amd64
os: linux
steps:
- name: publish
image: plugins/docker
settings:
auto_tag: true
repo: thomaslacaze/freebox-security-api
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event:
- push
- tag
- name: publish readme
image: thomaslacaze/dockerhub-description:2.4.1
pull: always
settings:
repository: thomaslacaze/freebox-security-api
username:
from_secret: docker_username
password:
from_secret: docker_password
readme: /drone/src/README.md
when:
branch:
- master
- main
- name: publish develop
image: plugins/docker
settings:
tags: develop
repo: thomaslacaze/freebox-security-api
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
branch:
- develop
###