diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f588f05422811da8058c53571bcab7784a730685..5f5d4780420f6f8ff7a6c082ac103a7889b4d744 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -45,17 +45,23 @@ redox:
   script:
     - redoxer test
 
-pages:
+link-check:
+  image: hrektts/mdbook
   before_script:
     - apt-get update -qq
     - apt-get install -qq libssl-dev pkg-config build-essential curl git
     - (test -x $HOME/.cargo/bin/mdbook-linkcheck || cargo install mdbook-linkcheck)
+  script:
+  - make manual
+  - mdbook build manual
+
+pages:
   image: hrektts/mdbook
   stage: deploy
   script:
   - make manual
   - mdbook build manual
-  - mv book/html public
+  - mv manual/book/html public
   artifacts:
     paths:
     - public