Skip to content

Commit bc049ef

Browse files
committed
fix: deploy workflow
1 parent d93f7d2 commit bc049ef

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ jobs:
5252
mkdir -p deploy/.next
5353
cp -r .next/static deploy/.next/static
5454
55-
cp -r public deploy/public
55+
# standalone already ships a traced public/ (llms.txt), so `cp -r public
56+
# deploy/public` would nest into it. Copy the contents, not the dir.
57+
mkdir -p deploy/public
58+
cp -r public/. deploy/public/
5659
5760
cp ecosystem.config.js deploy/ecosystem.config.js
5861

0 commit comments

Comments
 (0)