Skip to content

Commit 2d23f65

Browse files
committed
fix: use npm install instead of npm ci in release workflow
The workflow was failing because npm ci requires an existing package-lock.json file, which is not present in the repository. Changed to npm install to resolve the publishing issue.
1 parent c64ea93 commit 2d23f65

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
@@ -37,7 +37,7 @@ jobs:
3737
registry-url: 'https://registry.npmjs.org'
3838

3939
- name: Install dependencies
40-
run: npm ci
40+
run: npm install
4141

4242
- name: Build package
4343
run: npm run build

0 commit comments

Comments
 (0)