Skip to content

Commit

Permalink
ci(release): 修改依赖安装方式
Browse files Browse the repository at this point in the history
- 将 pnpm install 命令的 --frozen-lockfile 参数改为 --no-frozen-lockfile
- 这个修改允许在发布过程中更新依赖,适应更灵活的构建需求
  • Loading branch information
h7ml committed Dec 10, 2024
1 parent 1a8132e commit 220da35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --no-frozen-lockfile

- name: Build
run: pnpm build
Expand Down

0 comments on commit 220da35

Please sign in to comment.