-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
50 lines (45 loc) · 942 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
---
kind: pipeline
type: docker
name: BUILD-TEST
steps:
- name: Build Multi-arch
image: alcapone1933/drone:docker-buildx
privileged: true
settings:
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
repo: alcapone1933/htpasswd
tags: latest
dry_run: true
trigger:
branch:
- master
event:
- custom
- push
# - pull_request
---
kind: pipeline
type: docker
name: BUILD
steps:
- name: Build Multi-arch
image: alcapone1933/drone:docker-buildx
privileged: true
settings:
username:
from_secret: DOCKER_USER
password:
from_secret: DOCKER_PASS
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
repo: alcapone1933/htpasswd
tags: latest
trigger:
branch:
- master
event:
- custom
- push
# - pull_request
depends_on:
- BUILD-TEST