-
Notifications
You must be signed in to change notification settings - Fork 17
/
.drone.yml
54 lines (48 loc) · 1.13 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
---
kind: pipeline
name: release
steps:
- name: build & push release image
image: thegeeklab/drone-docker-buildx:24.1.3@sha256:ec22bdd258013478e6c5cb20430a7ea815d9f3e12ac71ee90a66c1b1d74071e5
settings:
auto_tag: true
repo: mazzolino/apprise-microservice
platforms:
- linux/amd64
- linux/arm64
- linux/armhf
username:
from_secret: docker_username
password:
from_secret: docker_password
trigger:
event:
exclude:
- pull_request
branch:
- master
---
kind: pipeline
name: pr
steps:
- name: build & push PR image
image: thegeeklab/drone-docker-buildx:24.1.3@sha256:ec22bdd258013478e6c5cb20430a7ea815d9f3e12ac71ee90a66c1b1d74071e5
settings:
repo: mazzolino/apprise-microservice
tags:
- pr-${DRONE_PULL_REQUEST}
platforms:
- linux/amd64
- linux/arm64
- linux/armhf
username:
from_secret: docker_username
password:
from_secret: docker_password
trigger:
event:
- pull_request
---
kind: signature
hmac: 0fabcdf9d3bf18b59d143a2356e213dedaaf2992b13d70e39db9db825adf4fb6
...