From 359126185e5fd4514e4e60d2b099c94c4bcb97af Mon Sep 17 00:00:00 2001 From: Nicola Coretti Date: Fri, 13 Dec 2024 14:58:43 +0100 Subject: [PATCH] Ensure that all references for building multiversion docs are available --- .github/workflows/gh-pages.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index 87ddaea6..1cb6227e 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -1,7 +1,5 @@ name: GH-Pages on: - pull_request: - branches: [ "master" ] push: branches: - master @@ -15,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 @@ -23,7 +24,7 @@ jobs: - name: Build Documentation run: | - poetry run python -m nox -vvvv -s docs:multiversion + poetry run python -m nox -vvv -s docs:multiversion touch .html-documentation/.nojekyll - name: Deploy