From a51160e1e5fb12d45514545ad12a6c78a8f03f84 Mon Sep 17 00:00:00 2001 From: Nicola Coretti Date: Mon, 16 Dec 2024 08:21:27 +0100 Subject: [PATCH] Fix gh-pages issues(s) (#521) --- .github/workflows/gh-pages.yaml | 5 ++++- doc/changes/changes_5.0.0.md | 1 + doc/conf.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index 3dc7f5a..1cb6227 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -13,6 +13,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup Python & Poetry Environment uses: ./.github/actions/python-environment @@ -21,7 +24,7 @@ jobs: - name: Build Documentation run: | - poetry run python -m nox -s docs:multiversion + poetry run python -m nox -vvv -s docs:multiversion touch .html-documentation/.nojekyll - name: Deploy diff --git a/doc/changes/changes_5.0.0.md b/doc/changes/changes_5.0.0.md index c3f45d1..b4c3900 100644 --- a/doc/changes/changes_5.0.0.md +++ b/doc/changes/changes_5.0.0.md @@ -9,3 +9,4 @@ ## 🧰 Internal - Relocked dependencies +- Fix multi-version documentation workflow diff --git a/doc/conf.py b/doc/conf.py index 897e636..b5ff5f4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -73,6 +73,6 @@ html_theme_options = { "light_logo": "_static/light-exasol-logo.svg", "dark_logo": "_static/dark-exasol-logo.svg", - "github_url": "https://github.com/exasol/{{cookiecutter.repo_name}}", + "github_url": "https://github.com/exasol/sqlalchemy-exasol", "accent_color": "grass", }