Skip to content

Commit 312cff5

Browse files
committed
fix build error
1 parent 0bba6ae commit 312cff5

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,13 @@ jobs:
4141
6a/node_modules
4242
7/node_modules
4343
8/node_modules
44-
10/node_modules
45-
11/node_modules
46-
12/node_modules
47-
13/node_modules
48-
14/node_modules
49-
15/node_modules
44+
101/node_modules
45+
102/node_modules
46+
103/node_modules
47+
104/node_modules
48+
105/node_modules
49+
106/node_modules
50+
107/node_modules
5051
key: ${{ runner.os }}-node-${{ hashFiles('*/package-lock.json') }}
5152
restore-keys: |
5253
${{ runner.os }}-node-
@@ -57,7 +58,7 @@ jobs:
5758
5859
echo "Installing dependencies for all projects..."
5960
# Install dependencies for all projects sequentially
60-
for dir in 1 2 3 4 5 5a 5b 6 6a 7 8 10 11 12 13 14 15; do
61+
for dir in 1 2 3 4 5 5a 5b 6 6a 7 8 101 102 103 104 105 106 107; do
6162
echo "Installing dependencies for project $dir..."
6263
cd $dir
6364
npm install
@@ -66,7 +67,7 @@ jobs:
6667
6768
echo "Building all projects..."
6869
# Build all projects sequentially to capture any build errors
69-
for dir in 1 2 3 4 5 5a 5b 6 6a 7 8 10 11 12 13 14 15; do
70+
for dir in 1 2 3 4 5 5a 5b 6 6a 7 8 101 102 103 104 105 106 107; do
7071
echo "Building project $dir..."
7172
cd $dir
7273
if npm run build; then
@@ -84,7 +85,7 @@ jobs:
8485
mkdir -p dist
8586
8687
echo "Copying build artifacts..."
87-
for dir in 1 2 3 4 5 5a 5b 6 6a 7 8 10 11 12 13 14 15; do
88+
for dir in 1 2 3 4 5 5a 5b 6 6a 7 8 101 102 103 104 105 106 107; do
8889
if [ -d "$dir/dist" ] && [ "$(ls -A $dir/dist 2>/dev/null)" ]; then
8990
echo "Copying $dir/dist to dist/$dir/"
9091
mkdir -p dist/$dir

0 commit comments

Comments
 (0)