Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ jobs:
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
workingDirectory: apps/docs
# The action picks a package manager by looking for a lockfile in
# workingDirectory. apps/docs has none (the lockfile is at the repo
# root), so it falls back to npm and npm chokes on the
# "dowel": "workspace:*" dependency. Say pnpm explicitly.
packageManager: pnpm
# The action's bundled default predates wrangler v4 and cannot read
# an assets-only config ("Missing entry-point"). Pin the major that
# wrangler.jsonc is written for.
# wrangler.jsonc is written for. wrangler ^4 is a devDependency of
# apps/docs, so the version probe finds it and no install runs.
wranglerVersion: "4"
3 changes: 2 additions & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.5",
"typescript": "5.9.3",
"vite": "^8.2.1"
"vite": "^8.2.1",
"wrangler": "^4.120.0"
}
}
Loading
Loading