From dfee8ef1182fdab5daad99afaf6cca682eaaffaa Mon Sep 17 00:00:00 2001
From: Ubbo Veentjer <veentjer@sub.uni-goettingen.de>
Date: Fri, 10 Jun 2022 20:19:38 +0200
Subject: [PATCH] tag container image

---
 .gitlab-ci.yml | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8a80f16..d070fe4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -85,7 +85,7 @@ build_and_deploy:
     paths:
       - ./target/*.deb
       
-build_container:
+build_container_image:
   image:
     name: gcr.io/kaniko-project/executor:debug
     entrypoint: [""]
@@ -98,6 +98,16 @@ build_container:
       --dockerfile $CI_PROJECT_DIR/Dockerfile
       --destination $CONTAINER_IMAGE
 
+tag_container_image:
+  image:
+    name: gcr.io/go-containerregistry/crane:debug
+    entrypoint: [""]
+  stage: deploy_deb
+  before_script:
+    - *crane-setup
+  script:
+    - crane tag $CONTAINER_IMAGE latest
+
 # Deploy DEB files to APTLY repository.
 # All four DEB files are deployed with SNAPSHOT version (branch: develop)!
 deploy_aggregator_dev:
-- 
GitLab