docker-smtp-relay/.drone.yml

106 lines
1.8 KiB
YAML
Raw Permalink Normal View History

2024-05-20 18:35:01 +00:00
---
kind: pipeline
type: docker
name: linux-amd64
platform:
arch: amd64
os: linux
steps:
- name: build
image: plugins/docker:linux-amd64
settings:
dockerfile: Dockerfile
dry_run: true
repo: docker.asperti.com/paspo/smtp-relay
when:
event:
- push
- name: build_and_publish
image: plugins/docker:linux-amd64
settings:
dockerfile: Dockerfile
force_tag: true
password:
from_secret: docker_password
registry: docker.asperti.com
repo: docker.asperti.com/paspo/smtp-relay
squash: true
username:
from_secret: docker_username
tags:
- latest-amd64
when:
event:
- tag
2024-07-08 14:07:15 +00:00
- cron
2024-05-20 18:35:01 +00:00
---
kind: pipeline
type: docker
name: linux-arm64
platform:
arch: arm64
os: linux
steps:
- name: build
image: plugins/docker:linux-arm64
settings:
dockerfile: Dockerfile
dry_run: true
repo: docker.asperti.com/paspo/smtp-relay
when:
event:
- push
- name: build_and_publish
image: plugins/docker:linux-arm64
settings:
dockerfile: Dockerfile
force_tag: true
password:
from_secret: docker_password
registry: docker.asperti.com
repo: docker.asperti.com/paspo/smtp-relay
squash: true
username:
from_secret: docker_username
tags:
- latest-arm64
when:
event:
- tag
2024-07-08 14:07:15 +00:00
- cron
2024-05-20 18:35:01 +00:00
---
kind: pipeline
type: docker
name: manifest
steps:
- name: manifest
image: plugins/manifest
settings:
force_tag: true
ignore_missing: true
spec: manifest.tmpl
username:
from_secret: docker_username
password:
from_secret: docker_password
tags:
- latest
trigger:
event:
- tag
2024-07-08 14:07:15 +00:00
- cron
2024-05-20 18:35:01 +00:00
depends_on:
- linux-amd64
- linux-arm64