From 03527b4ace0b031053c49b636a1c656856c72538 Mon Sep 17 00:00:00 2001 From: simon Date: Thu, 12 May 2022 21:50:37 +0700 Subject: [PATCH] add manifest pipeline --- .drone.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.drone.yml b/.drone.yml index ee790c3..1ed0350 100644 --- a/.drone.yml +++ b/.drone.yml @@ -43,3 +43,26 @@ steps: from_secret: docker_token build_args: - TARGETPLATFORM=linux/arm64 + +--- +kind: pipeline +type: docker +name: manifest + +steps: +- name: manifest + image: plugins/manifest + settings: + target: bbilly1/tubearchivist-test + template: bbilly1/tubearchivist-test:unstable-OS-ARCH + username: + from_secret: docker_username + password: + from_secret: docker_password + platforms: + - linux/amd64 + - linux/arm64 + +depends_on: +- amd64 +- arm64