From 114e2645194924f3d8596e2ad1417cfd7e00f8d8 Mon Sep 17 00:00:00 2001 From: Sanil Chawla Date: Wed, 11 Feb 2026 23:54:05 -0800 Subject: [PATCH] fix(ci): add workingDirectory and debug step for wrangler config --- .gitea/workflows/deploy.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 36acee8..6d4258a 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -25,9 +25,13 @@ jobs: - name: Build run: bun run build + - name: Debug working directory + run: ls -la && cat wrangler.json + - name: Deploy to Cloudflare Pages uses: cloudflare/wrangler-action@v3 with: apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - command: pages deploy --config wrangler.json + workingDirectory: "." + command: pages deploy