From 0661280e8b0927ca5a3afd2a6fbe1b9338f04e3b Mon Sep 17 00:00:00 2001 From: DutchEllie Date: Wed, 11 May 2022 12:41:37 +0200 Subject: [PATCH] Add manifest? --- .drone.yml | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index ae225ba..20cf298 100644 --- a/.drone.yml +++ b/.drone.yml @@ -27,7 +27,7 @@ steps: dockerfile: pepeservice/Dockerfile repo: dutchellie/pepebot_service tags: - - latest + - latest-x86 --- @@ -60,4 +60,38 @@ steps: dockerfile: pepeservice/Dockerfile repo: dutchellie/pepebot_service tags: - - latest \ No newline at end of file + - latest-arm64 + +--- + +kind: pipeline +type: kubernetes +name: manifest + +steps: +- name: manifest-main + image: plugins/manifest + settings: + platforms: + - linux/x86 + - linux/arm64 + target: dutchellie/pepebot + username: + from_secret: docker_username + password: + from_secret: docker_password +- name: manifest-pepebotservice + image: plugins/manifest + settings: + platforms: + - linux/x86 + - linux/arm64 + target: dutchellie/pepebot_service + username: + from_secret: docker_username + password: + from_secret: docker_password + +depends_on: + - pepebot_build_arm64 + - pepebot_build_x86 \ No newline at end of file