Skip to content

Commit 6c22b74

Browse files
author
Les Moffat
committed
fix(github): fix broken npm action
1 parent a035ff2 commit 6c22b74

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/npm-publish.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,18 @@ jobs:
2121
node-version: 18
2222
registry-url: https://registry.npmjs.org/
2323
- run: npm ci
24+
2425
- run: npm run make
25-
26+
27+
- name: Clear NPM cache
28+
run: npm cache clean --force
29+
30+
- name: Install dependencies and build
31+
run: npm ci
32+
33+
- name: Make release
34+
run: npm run make
35+
2636
- name: Publish NPM package (regular)
2737
if: "!github.event.release.prerelease"
2838
run: |

0 commit comments

Comments
 (0)