Skip to content

Commit a87b696

Browse files
committed
feat: 合并部分pr请求
1 parent 7ffb0d0 commit a87b696

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,10 @@ jobs:
4343
# 验证 esbuild 版本
4444
echo "esbuild version:"
4545
pnpm exec esbuild --version || echo "esbuild not found in root"
46-
cd packages/core && pnpm exec esbuild --version || echo "esbuild not found in core"
46+
(cd packages/core && pnpm exec esbuild --version) || echo "esbuild not found in core"
4747
# 构建项目 - 只构建 core 包
48-
# 进入 core 包目录直接执行构建
49-
cd packages/core
50-
pnpm build
48+
# 使用子shell确保在正确的目录执行
49+
(cd packages/core && pnpm build)
5150
5251
- name: Create Release Pull Request
5352
id: create_release

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-element-plus-x",
33
"type": "module",
4-
"version": "1.3.83",
4+
"version": "1.3.84",
55
"license": "MIT",
66
"homepage": "https://element-plus-x.com",
77
"repository": {

0 commit comments

Comments
 (0)