Skip to content

Commit 46e761b

Browse files
committed
ci: Add dist directory creation step in CircleCI config
- Add mkdir command to create dist directory before build process - Ensure required directory structure exists for build artifacts - Add Chinese comments explaining directory creation purpose
1 parent 44a18b9 commit 46e761b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.circleci/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
- checkout
1111
- run: git submodule sync
1212
- run: git submodule update --init --recursive
13+
# 创建必要的目录
14+
- run: mkdir -p dist
1315
# 首先在根目录安装依赖
1416
- run: yarn install
1517
# 然后进入 gui 目录安装依赖并构建

0 commit comments

Comments
 (0)