From ef352f27ed83894df6073258f1dd39323e15d192 Mon Sep 17 00:00:00 2001 From: Michael Rudolf <rudolf@geo.tu-darmstadt.de> Date: Tue, 29 Aug 2023 16:39:15 +0200 Subject: [PATCH] Fixed pipeline --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d94a8ac..b5990a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ image: python:3.7-alpine test: stage: test script: - - pip install -U sphinx sphinx_rtd_theme myst_parser + - pip install -U sphinx sphinx_rtd_theme myst_parser pydata_sphinx_theme - sphinx-build -b html . public rules: - if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH @@ -11,7 +11,7 @@ test: pages: stage: deploy script: - - pip install -U sphinx sphinx_rtd_theme myst_parser + - pip install -U sphinx sphinx_rtd_theme myst_parser pydata_sphinx_theme - sphinx-build -b html . public artifacts: paths: -- GitLab