-
Notifications
You must be signed in to change notification settings - Fork 25
/
.drone.yml
56 lines (50 loc) · 1.32 KB
/
.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
53
54
55
56
---
kind: pipeline
name: release
steps:
- name: build & push release image
image: thegeeklab/drone-docker-buildx:20.12.1@sha256:5439d579562a605953b386df64f1a469720f5358fa1bd0bdf225ae8d48d652b7
settings:
auto_tag: true
repo: mazzolino/librespot-snapserver
cache_from: mazzolino/librespot-snapserver:cache
cache_to: mazzolino/librespot-snapserver:cache
platforms:
- linux/amd64
- linux/arm64
- linux/armhf
username:
from_secret: docker_username
password:
from_secret: docker_password
trigger:
event:
exclude:
- pull_request
---
kind: pipeline
name: pr
steps:
- name: build & push pr image
image: thegeeklab/drone-docker-buildx:20.12.1@sha256:5439d579562a605953b386df64f1a469720f5358fa1bd0bdf225ae8d48d652b7
settings:
repo: mazzolino/librespot-snapserver
tags:
- pr-${DRONE_PULL_REQUEST}
cache_from: mazzolino/librespot-snapserver:cache
cache_to: mazzolino/librespot-snapserver:cache
platforms:
- linux/amd64
- linux/arm64
- linux/armhf
username:
from_secret: docker_username
password:
from_secret: docker_password
trigger:
event:
- pull_request
---
kind: signature
hmac: 24ce5dc1d5c46b85b970f87495da708b275b2a3b94fd9d11e8e30b884807e626
...