From 2032c5132e7bd9b1dc8f53d6ccb9b2d859680998 Mon Sep 17 00:00:00 2001 From: Alexander Lanin Date: Thu, 7 May 2026 12:12:03 +0200 Subject: [PATCH] feat(docs): add debug artifact upload step to documentation workflow --- .github/workflows/docs.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index de7b2fa..77c84ab 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -255,6 +255,15 @@ jobs: retention-days: ${{ inputs.retention-days }} if-no-files-found: error + - name: Upload built documentation (debug) + if: runner.debug + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + with: + name: docs-debug-${{ github.run_id }}-${{ github.run_attempt }} + path: github-pages.tar + retention-days: 5 + if-no-files-found: error + - name: Save content cache (branch) if: success() && github.event_name == 'push' continue-on-error: true