From aefef9658cfab4bd2d91f277d7dda48bc4fd2b0f Mon Sep 17 00:00:00 2001 From: solidsnakedev Date: Thu, 31 Jul 2025 12:46:53 -0600 Subject: [PATCH] fix: use full git history for nextra documentation build - Change fetch-depth from 2 to 0 to fetch full git history - This resolves nextra shallow clone warning and ensures proper file timestamps - Should fix documentation deployment issues --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d5aeca52..bdf6b996 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 2 + fetch-depth: 0 - uses: pnpm/action-setup@v4