From 1e1192fd525486b7716a62773beb455052ef4c20 Mon Sep 17 00:00:00 2001 From: Torben Sorensen Date: Mon, 10 Nov 2025 09:40:26 -0800 Subject: [PATCH] work on deploy to flyer-crawler.projectium.com --- .gitea/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 986ca47a..d8d9d7e2 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -42,7 +42,8 @@ jobs: with: node-version: '20' cache: 'npm' # Cache npm dependencies to speed up subsequent builds. - cache-dependency-path: 'package-lock.json' + # Use a glob pattern to find the lock file, making the path more resilient. + cache-dependency-path: '**/package-lock.json' - name: Install Dependencies run: npm ci # 'ci' is faster and safer for CI/CD than 'install'.