From 8a4b797399fc978432f88830993a5a597db4435e Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Wed, 6 Sep 2023 09:18:44 +0200 Subject: [PATCH] ADD: enforce pushing of image to registry --- .drone.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6c1f63c..49da213 100644 --- a/.drone.yml +++ b/.drone.yml @@ -23,7 +23,7 @@ steps: commands: - scripts/setupEnvironment.sh - buildah bud --network host -t "registry.cloud.federationhq.de/latex:latest-amd64" --arch amd64 . - + - buildah push --all registry.cloud.federationhq.de/latex:latest-amd64 --- kind: pipeline type: kubernetes @@ -50,7 +50,8 @@ steps: commands: - scripts/setupEnvironment.sh - buildah bud --network host -t "registry.cloud.federationhq.de/latex:latest-arm64" --arch arm64 . - + - buildah push --all registry.cloud.federationhq.de/latex:latest-arm64 + --- kind: pipeline type: kubernetes