From d48b65f8e556d7bdf69c15ee29189e03ec8d44a1 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 27 Dec 2025 00:58:23 +0000 Subject: [PATCH] Fix deploy workflow - remove npm cache dependency The package-lock.json doesn't exist, causing cache errors. Removing cache config - it's optional and workflow will still work. --- .github/workflows/deploy-pages.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 5ff4ddc..2ec0af6 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -25,8 +25,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - cache-dependency-path: docs/package-lock.json - name: Setup Pages uses: actions/configure-pages@v4