From 090fc57a1643f02d88f716df23b541d0e4727688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Wysoki=C5=84ski?= Date: Sun, 10 Jul 2022 18:27:25 +0200 Subject: [PATCH] build image for arm64 as well --- .drone.yml | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 3cb9780..c145139 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,6 +1,35 @@ kind: pipeline type: docker -name: Build +name: linux-amd64 + +platform: + os: linux + arch: amd64 + +steps: + - name: publish + image: plugins/docker + settings: + username: + from_secret: docker_username + password: + from_secret: docker_password + repo: kichiyaki/caddy + auto_tag: true + dockerfile: Dockerfile + +trigger: + event: + - tag + +--- +kind: pipeline +type: docker +name: linux-arm64 + +platform: + os: linux + arch: arm64 steps: - name: publish