From 6ce3e51f79db4807cb707901f6432259a82dd09f Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Mon, 27 May 2024 23:29:05 -0400 Subject: [PATCH] Caching the Docusaurus temp directory does not decrease the build time --- .github/workflows/docs.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f5a9c3c..5ca184e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -37,13 +37,6 @@ jobs: - name: Install dependencies run: npm ci - - name: Cache Docusaurus temp directory - uses: actions/cache@v4 - with: - path: ./docs/.docusaurus - key: docusaurus-cache-${{ runner.os }}-${{ hashFiles('./docs/package-lock.json') }}-${{ github.sha }} - restore-keys: docusaurus-cache-${{ runner.os }}-${{ hashFiles('./docs/package-lock.json') }}- - - name: Build the documentation site run: npm run build