Skip to content

Commit ca4b35e

Browse files
committed
fix: remove package-lock.json from workflow cleanup step
- The workflow was deleting package-lock.json before running npm ci - This caused npm ci to fail since it requires package-lock.json to exist - Now only node_modules is removed for clean install
1 parent ddaefa2 commit ca4b35e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
node-version: 20
3535
- name: Clean up
3636
run: |
37-
rm -rf node_modules package-lock.json || true
37+
rm -rf node_modules || true
3838
npm cache clean --force || true
3939
- run: npm ci
4040
- name: add macos cert

0 commit comments

Comments
 (0)