From d2f519c8b827dd99b59fec48f1449f2c22c7b69b Mon Sep 17 00:00:00 2001 From: Spill-Tea Date: Tue, 20 Jan 2026 22:58:00 -0800 Subject: [PATCH] fix(workflows.build-docs): Correct checkout to fetch tags and default branch to correctly build all versions of documentation. --- .github/workflows/build-docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 422ded0..ac073e6 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -18,6 +18,8 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + fetch-tags: true + ref: ${{ github.event.repository.default_branch }} - name: Set up Python uses: actions/setup-python@v5