diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b0191dc37972ed7f28101ddf246f5ef8b5105be3..591486556b89e2aa2c7589e15edf0bb2bf84a5b6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,38 +20,38 @@ before_script:
 after_script:
   - nix develop .#gitlab --command clean-up
 
-tests:
-  stage: test
-  tags:
-    - nixos-gen3
-  script:
-    -  nix develop .#gitlab --command run-ci-tests
-  cache:
-    untracked: true
-    key:
-      files:
-        - pnpm-lock.yaml
-    paths:
-      - node_modules/
-
-web-tests:
-  stage: test
-  tags:
-    - nixos-gen3
-  script:
-    -  nix develop .#gitlab --command run-ci-web-tests
-  cache:
-    untracked: true
-    key:
-      files:
-        - pnpm-lock.yaml
-    paths:
-      - node_modules/
-  artifacts:
-    paths:
-      - screenshot.png
-  rules:
-    - if: '$CI_COMMIT_TAG == null'
+#tests:
+#  stage: test
+#  tags:
+#    - nixos-gen3
+#  script:
+#    -  nix develop .#gitlab --command run-ci-tests
+#  cache:
+#    untracked: true
+#    key:
+#      files:
+#        - pnpm-lock.yaml
+#    paths:
+#      - node_modules/
+#
+#web-tests:
+#  stage: test
+#  tags:
+#    - nixos-gen3
+#  script:
+#    -  nix develop .#gitlab --command run-ci-web-tests
+#  cache:
+#    untracked: true
+#    key:
+#      files:
+#        - pnpm-lock.yaml
+#    paths:
+#      - node_modules/
+#  artifacts:
+#    paths:
+#      - screenshot.png
+#  rules:
+#    - if: '$CI_COMMIT_TAG == null'
 
 release:
   stage: release
diff --git a/nix/scripts/release.nix b/nix/scripts/release.nix
index 07bc2b4d8fda60aabeb2e0d536c286d28512bbfb..93fd9fb37256127e9ad53dc8605883fa56310111 100644
--- a/nix/scripts/release.nix
+++ b/nix/scripts/release.nix
@@ -34,7 +34,7 @@ in
     ${pkgs'.git}/bin/git checkout $CI_COMMIT_REF_NAME
     ${pkgs'.git}/bin/git pull origin $CI_COMMIT_REF_NAME
 
-    if ! ${pkgs'.git}/bin/git --no-pager log --decorate=short --pretty=oneline -n 30
+    if ! ${pkgs'.git}/bin/git --no-pager log --decorate=short --pretty=oneline -n 10
     then
         echo_fail "Error: Could not get git log."
         exit 1
@@ -51,7 +51,7 @@ in
     fi
 
     echo_step "Write project version"
-
+set -x
     export VERSION=$gitVersion
     export COMMIT="$CI_COMMIT_SHA"
     export NAME=$(basename $(pwd) | sed 's/./\U&/' | sed 's/-//g')