From 28f38a08294db171bb401be9ab05d65ecd3b5a41 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Thu, 4 Jan 2024 19:53:47 +0100
Subject: [PATCH] fix: ci

---
 .gitlab-ci.yml | 13 +++++++------
 devenv.nix     | 15 ++++++++-------
 2 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f2057df..b80c2f6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,12 +16,13 @@
     - tag
     - release
 
-  debug:
-    tags:
-      - nixos
-    stage: tag  
-    script:
-      - export
+  # if you want to debug the ci pipeline, uncomment the following lines
+  #debug: 
+  #  tags:
+  #    - nixos
+  #  stage: tag  
+  #  script:
+  #    - export
 
   tag-it:
     tags:
diff --git a/devenv.nix b/devenv.nix
index 3f539d1..b04d996 100644
--- a/devenv.nix
+++ b/devenv.nix
@@ -134,12 +134,13 @@ tasks:
           - tag
           - release
 
-        debug:
-          tags:
-            - nixos
-          stage: tag  
-          script:
-            - export
+        # if you want to debug the ci pipeline, uncomment the following lines
+        #debug: 
+        #  tags:
+        #    - nixos
+        #  stage: tag  
+        #  script:
+        #    - export
 
         tag-it:
           tags:
@@ -331,7 +332,7 @@ in {
     
     ${pkgs.git}/bin/git log --decorate=short --pretty=oneline
     
-    ${pkgs.git}/bin/git tag -a "''${NEWVERSION}" -m "chore: Release ''${NEWVERSION} - RELEASE_IT"
+    ${pkgs.git}/bin/git tag -a "''${NEWVERSION}" -m "chore: Release ''${NEWVERSION} - DO_RELEASE"
     ${pkgs.git}/bin/git push origin $CI_COMMIT_REF_NAME --tags
 
   '';
-- 
GitLab