diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b3eeeddcc2dc4344248b4c92bc6812645cb6cca8..5841591808295ea320f823afbeb1fd30b9aa2759 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,8 +7,6 @@ stages:  # Define stages in the pipeline
 # Job to build documentation
 build-docs:
   stage: build
-  tags:
-    - shell
   script:
     - sphinx-build docs/source docs/build  # Build the documentation
   artifacts:
@@ -19,8 +17,6 @@ build-docs:
 # Job to deploy documentation to GitLab Pages
 pages:
   stage: deploy
-  tags:
-    - shell
   script:
     - mv docs/build public  # Move the build output to the "public" directory
   artifacts: