From 55909a91279a3b68e1b4df3f239be65afdbace3a Mon Sep 17 00:00:00 2001
From: Lyuben Penkovski <lyuben.penkovski@vereign.com>
Date: Mon, 16 Oct 2023 17:12:13 +0300
Subject: [PATCH] Update .gitlab-ci.yml to prev version before fetching changes
 from Eclipse

---
 .gitlab-ci.yml | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4d9f8427..f92de4ed 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,5 @@
 variables:
   HELPERS_FILE: docker-build.yml
-  HELM_HELPERS_FILE: helm.yml
   APP_HELM_NAME: policy
   DOCKER_FILE: deployment/ci/Dockerfile
 
@@ -8,15 +7,13 @@ stages:
   - compile
   - test
   - build
-  - helm
+  - manifest
   - deploy
 
 include:
   - project: "${HELPERS_PATH}"
     file: "${HELPERS_FILE}"
   - template: "Workflows/Branch-Pipelines.gitlab-ci.yml"
-  - project: "$HELM_HELPERS_PATH}"
-    file: "${HELM_HELPERS_FILE}"
 
 lint:
   image: golangci/golangci-lint:latest
@@ -74,8 +71,14 @@ dockerize sync:
     - tags
     - integration
 
-helm-lint:
-  extends: .helm-lint
-  stage: helm
-  tags:
-    - amd64-docker
+manifest:
+  extends: .manifest-amd64
+  stage: manifest
+
+cloud:
+  extends: .manifest-cloud
+  stage: manifest
+
+release:
+  extends: .manifest-release
+  stage: manifest
-- 
GitLab