Skip to content

Commit e008f4b

Browse files
authored
Fix publish workflow (#1582)
1 parent a44a0e8 commit e008f4b

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
node-version: '22'
2020
registry-url: 'https://registry.npmjs.org'
2121

22-
- run: npm ci
23-
- run: npm run compile
24-
- run: npm publish
22+
- run: |
23+
rm -rf node_modules
24+
rm -rf coverage
25+
rm -rf docs
26+
npm run compile
27+
npm publish

0 commit comments

Comments
 (0)