From 521fb33a83d0c57e73b2b38d2c0a5aecc0ba91f3 Mon Sep 17 00:00:00 2001 From: Volker von Holt <v.von-holt@ostfalia.de> Date: Sun, 9 Jun 2024 20:43:12 +0000 Subject: [PATCH] Update file .gitlab-ci.yml --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d172029..a06dee3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,8 +22,7 @@ test: stage: test script: - pip install -U sphinx - - sphinx-build -b html . public - only: + - sphinx-build -b html docs/source/ public/ - branches except: - master @@ -32,7 +31,7 @@ pages: stage: deploy script: - pip install -U sphinx - - sphinx-build -b html . public + - sphinx-build -b html docs/source/ public/ artifacts: paths: - public -- GitLab