From a9074d37159f53341b354102c5623c4370e17788 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Sun, 11 Sep 2022 22:48:22 +0200 Subject: [PATCH] Fix --- .drone.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 78370bd..704094f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,12 +12,13 @@ steps: # repo: harbor.hq.rosti.cz/library/builder username: admin password: admin - repo: registry.kube.ceperka.net/library/builder + repo: registry.kube.ceperka.net + image: registry.kube.ceperka.net/library/builder tag: 36 privileged: true commands: - - echo "$password" | podman login -u $username --password-stdin harbor.hq.rosti.cz - - podman build -t $repo:$tag . - - podman tag $repo:$tag $repo:latest - - podman push $repo:$tag - - podman push $repo:latest + - echo "$password" | podman login -u $username --password-stdin $repo + - podman build -t $image:$tag . + - podman tag $image:$tag $image:latest + - podman push $image:$tag + - podman push $image:latest