From 0a51f6c735cc39b787d5ba35ed85d7a1544316e5 Mon Sep 17 00:00:00 2001 From: Erin O'Connell Date: Fri, 13 Mar 2026 11:54:47 -0600 Subject: [PATCH 1/2] debug print --- .github/workflows/ci.yml | 3 +++ .github/workflows/deploy.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6359c58c71..ebc136345c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,3 +90,6 @@ jobs: - name: Build run: npm run build + + - name: Debug + run: ls -la dist/_nuxt/content 2>&1 || true diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 716aa548bd..40e956bfe3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,7 +38,7 @@ jobs: NODE_ENV: production - name: Debug - run: ls -la dist/ .output/public/ 2>&1 || true + run: ls -la dist/_nuxt/content 2>&1 || true - name: Upload uses: actions/upload-pages-artifact@v3 From dcdc6a4f069e9f366472d22a374a47bce413b7b6 Mon Sep 17 00:00:00 2001 From: Erin O'Connell Date: Fri, 13 Mar 2026 12:11:59 -0600 Subject: [PATCH 2/2] force install chrome for puppeteer --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebc136345c..29b263e3dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,6 +88,9 @@ jobs: name: Install run: npm ci + - name: Install Chrome for Puppeteer + run: npx puppeteer browsers install chrome + - name: Build run: npm run build