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
This commit is contained in:
parent
44a18b9ab4
commit
46e761b033
@ -10,6 +10,8 @@ jobs:
|
|||||||
- checkout
|
- checkout
|
||||||
- run: git submodule sync
|
- run: git submodule sync
|
||||||
- run: git submodule update --init --recursive
|
- run: git submodule update --init --recursive
|
||||||
|
# 创建必要的目录
|
||||||
|
- run: mkdir -p dist
|
||||||
# 首先在根目录安装依赖
|
# 首先在根目录安装依赖
|
||||||
- run: yarn install
|
- run: yarn install
|
||||||
# 然后进入 gui 目录安装依赖并构建
|
# 然后进入 gui 目录安装依赖并构建
|
||||||
|
Loading…
x
Reference in New Issue
Block a user