From fbd8a0cee97b95db03ad83771b6829fc5d51f817 Mon Sep 17 00:00:00 2001 From: Davide Ricci Date: Wed, 18 Jun 2025 17:58:14 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f8b144a..768c493 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -132,11 +132,12 @@ pages: stage: deploy_docs tags: - git-run-ia2 - needs: - - job: install_project - artifacts: true + before_script: - pip install --upgrade pip + - echo "Installing project '${PROJECT}' and its dependencies..." + - pip install -e . + - echo "${PROJECT} installation complete." - pip install -r docs/requirements.txt script: - echo "Current directory $(pwd)" @@ -145,8 +146,7 @@ pages: - sphinx-build -b html docs/source docs/public/html artifacts: paths: - - . # Pass the modified workspace - # - public + - public rules: - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH -- GitLab