From 8f3947f7d9f17f83e35ac212f98bba8f548f57f6 Mon Sep 17 00:00:00 2001 From: Erin O'Connell Date: Fri, 13 Mar 2026 11:37:25 -0600 Subject: [PATCH] Change the key name for the cache to force npm to reinstall everything and then rebuild --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 434a351d95..716aa548bd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: uses: actions/cache@v5 with: path: ./node_modules - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} + key: v2-${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - if: steps.cache.outputs.cache-hit != 'true' name: Install @@ -37,6 +37,9 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NODE_ENV: production + - name: Debug + run: ls -la dist/ .output/public/ 2>&1 || true + - name: Upload uses: actions/upload-pages-artifact@v3 with: