Skip to content

Commit 8e2b864

Browse files
committed
Fix docs publish
1 parent 6124343 commit 8e2b864

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/publish-docs.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,33 @@ jobs:
4242
- name: Install dependencies
4343
run: pnpm install --frozen-lockfile
4444

45+
- name: Create .env.production.local file for apps/backend
46+
run: cp apps/backend/.env.development apps/backend/.env.production.local
47+
48+
- name: Create .env.production.local file for apps/dashboard
49+
run: cp apps/dashboard/.env.development apps/dashboard/.env.production.local
50+
51+
- name: Create .env.production.local file for apps/e2e
52+
run: cp apps/e2e/.env.development apps/e2e/.env.production.local
53+
54+
- name: Create .env.production.local file for examples/cjs-test
55+
run: cp examples/cjs-test/.env.development examples/cjs-test/.env.production.local
56+
57+
- name: Create .env.production.local file for examples/demo
58+
run: cp examples/demo/.env.development examples/demo/.env.production.local
59+
60+
- name: Create .env.production.local file for examples/docs-examples
61+
run: cp examples/docs-examples/.env.development examples/docs-examples/.env.production.local
62+
63+
- name: Create .env.production.local file for examples/e-commerce
64+
run: cp examples/e-commerce/.env.development examples/e-commerce/.env.production.local
65+
66+
- name: Create .env.production.local file for examples/middleware
67+
run: cp examples/middleware/.env.development examples/middleware/.env.production.local
68+
69+
- name: Create .env.production.local file for examples/partial-prerendering
70+
run: cp examples/partial-prerendering/.env.development examples/partial-prerendering/.env.production.local
71+
4572
- name: Build
4673
run: pnpm build
4774

0 commit comments

Comments
 (0)