We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea2b959 commit 00c58a2Copy full SHA for 00c58a2
1 file changed
.github/workflows/release.yml
@@ -45,12 +45,12 @@ jobs:
45
- name: 🔧 Setup Node.js
46
uses: actions/setup-node@v4
47
with:
48
- node-version: '20'
+ node-version: '20.19.3'
49
cache: 'npm'
50
51
- # 3. 安装依赖
+ # 3. 安装依赖 (使用 --ignore-scripts 避免在安装阶段触发构建脚本)
52
- name: 📦 Install dependencies
53
- run: npm install
+ run: npm ci --ignore-scripts
54
55
# 4. 获取并同步版本号
56
- name: 📌 Get and Sync version
0 commit comments