drone-detach-sign/.drone.yml
Davide Depau 3000374b7a
All checks were successful
continuous-integration/drone/push Build is passing
Initial commit
2020-04-25 03:17:21 +02:00

47 lines
790 B
YAML

---
kind: pipeline
type: docker
name: alarm-aarch64
platform:
os: linux
arch: arm64
steps:
- name: build-image
image: plugins/docker
environment:
TZ: Europe/Rome
settings:
dockerfile: Dockerfile.aarch64
purge: true
username: depau
password:
from_secret: docker_password
repo: depau/drone-detach-sign
tags:
- aarch64
---
kind: pipeline
type: docker
name: archlinux-x86_64
platform:
os: linux
arch: amd64
steps:
- name: build-image
image: plugins/docker
environment:
TZ: Europe/Rome
settings:
dockerfile: Dockerfile.x86_64
purge: true
username: depau
password:
from_secret: docker_password
repo: depau/drone-detach-sign
tags:
- x86_64