Skip to content

Commit 8f10bc1

Browse files
committed
fix(ci): dereference symlinks when copying styled-jsx
1 parent a58bf55 commit 8f10bc1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cms_cms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
mkdir -p .next/standalone/.next/static
4343
cp -r public .next/standalone/public
4444
cp -r .next/static .next/standalone/.next/static
45-
cp -r node_modules/styled-jsx .next/standalone/node_modules/
45+
cp -rL node_modules/styled-jsx .next/standalone/node_modules/
4646
cd .next/standalone
4747
zip -r ../../release.zip .
4848

.github/workflows/main_cms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
mkdir -p .next/standalone/.next/static
4444
cp -r public .next/standalone/public
4545
cp -r .next/static .next/standalone/.next/static
46-
cp -r node_modules/styled-jsx .next/standalone/node_modules/
46+
cp -rL node_modules/styled-jsx .next/standalone/node_modules/
4747
cd .next/standalone
4848
zip -r ../../release.zip .
4949

0 commit comments

Comments
 (0)