From f90da9e49c4963d9765c8f65c18e85f463629d54 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 10 Jun 2025 17:07:47 +0200 Subject: [PATCH] feat: improve comments --- .gitlab/image-build.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab/image-build.yaml b/.gitlab/image-build.yaml index 36ff98d..3399b47 100644 --- a/.gitlab/image-build.yaml +++ b/.gitlab/image-build.yaml @@ -10,17 +10,17 @@ image-build: image: "quay.io/buildah/stable:latest" script: - # Login to container registry + # login - "echo $CR_PASSWORD | buildah login -u $CR_USERNAME --password-stdin $CR_HOSTNAME" - # Build image using buildah (rootless) + # build image - "buildah bud -t docs-simoncor-net ." - # Tag the image for registry + # tag the image - "buildah tag docs-simoncor-net cr.simoncor.net/siempie/docs-simoncor-net:latest" - # Push the image + # push the image - "buildah push cr.simoncor.net/siempie/docs-simoncor-net:latest" - # Logout + # logout - "buildah logout $CR_HOSTNAME"