diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9d32dd62737aabcd2627c297a9d4215de56cedca..8a73e87326abcf214c8c2c3ec4ace75327d9308d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,7 @@ variables:
   TRIVY_CACHE_DIR: ".trivycache/"
   DOCKER_HOST: "unix:///var/run/dind/docker.sock"
   TESTCONTAINERS_RYUK_DISABLED: "false"
-  DOC_VERSIONS: "latest,1.4.2,1.4.1,1.4.0,1.3.0"
+  DOC_VERSIONS: "1.4.0,1.4.1,1.4.2"
   APP_VERSION: "1.4.2"
   CHART_VERSION: "1.4.2"
 
@@ -577,11 +577,6 @@ release-docs:
     - tar czf ./final.tar.gz ./final
     - "scp -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa final.tar.gz $CI_DOC_USER@$CI_DOC_IP:final.tar.gz"
     - "ssh -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa $CI_DOC_USER@$CI_DOC_IP 'rm -rf /system/user/ifs/infrastructures/public_html/dbrepo/*; tar xzf ./final.tar.gz; rm -f ./final.tar.gz; cp -r ./final/* /system/user/ifs/infrastructures/public_html/dbrepo; rm -rf ./final'"
-  artifacts:
-    when: always
-    paths:
-      - ./final.tar.gz
-    expire_in: 1 days
 
 release-libs:
   stage: release
diff --git a/build-docs.sh b/build-docs.sh
index bd0001c1ea68a486ad906f7a0dbab5799984b620..a38121fceb9a4cd1b43c34058755a049a08f8beb 100644
--- a/build-docs.sh
+++ b/build-docs.sh
@@ -35,7 +35,7 @@ function generate_docs {
   fi
   find .docs/ -type f -exec sed -i -e "s/__APPVERSION__/$1/g" {} \;
   find .docs/ -type f -exec sed -i -e "s/__CHARTVERSION__/$1/g" {} \;
-  mike deploy $1 && cp -r ./site "./final/$1"
+  mkdocs build > /dev/null && cp -r ./site "./final/$1"
   cp -r "./swagger/$1" "./final/$1/swagger"
   echo $VERSIONS_JSON > "./final/$1/versions.json"
   clean_cache