From 519ec28144c5fba5a56d072724247a2468ba549d Mon Sep 17 00:00:00 2001 From: Anastasia Psarou <97515093+AnastasiaPsarou@users.noreply.github.com> Date: Wed, 9 Oct 2024 17:32:31 +0200 Subject: [PATCH] doc --- .github/workflows/documentation.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 827e4e641..f5a132b31 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -22,10 +22,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install sphinx - python -m pip install sphinx-rtd-theme - python -m pip install myst-parser # To support Markdown files - python -m pip install furo # Install Furo theme + python -m pip install sphinx sphinx-rtd-theme myst-parser furo + - name: Build Sphinx documentation run: | @@ -37,7 +35,6 @@ jobs: run: | cd docs/_build/html # Navigate to the built HTML files touch .nojekyll # Disable Jekyll to serve raw HTML/CSS - rm -rf .git # Clean up any existing git repo in the build directory git init # Initialize a new Git repo in the build folder git add . git config --local user.email "action@github.com"