Skip to content

Commit 2c2680a

Browse files
committed
fix(docs): Fix deploy action script
1 parent d22c29b commit 2c2680a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88

99
# Allows you to run this workflow manually from the Actions tab
1010
workflow_dispatch:
11+
inputs:
1112

1213
jobs:
1314
build:
@@ -25,6 +26,11 @@ jobs:
2526
with:
2627
node-version: '18'
2728

29+
# Remove package-lock.json
30+
# See (https://github.com/npm/cli/issues/4828)
31+
- name: Remove package-lock.json
32+
run: rm -rf package-lock.json
33+
2834
# Install dependencies
2935
- name: Install Dependencies
3036
run: npm install --ignore-scripts

0 commit comments

Comments
 (0)