Skip to content
This repository was archived by the owner on Oct 13, 2020. It is now read-only.

Commit 542f756

Browse files
committed
fix(semantic-release): update included assets
- include node_modules in release archive (required for github actions) [ch8743]
1 parent f3f4ea0 commit 542f756

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.releaserc.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,24 @@ module.exports = {
1717
changelogFile: 'CHANGELOG.md',
1818
},
1919
],
20-
'@semantic-release/github',
20+
[
21+
'@semantic-release/github',
22+
{
23+
assets: [
24+
'CHANGELOG.md',
25+
'dist/**',
26+
'node_modules/**',
27+
'package.json',
28+
'yarn.lock',
29+
'action.yml',
30+
'LICENSE.md',
31+
],
32+
},
33+
],
2134
[
2235
'@semantic-release/git',
2336
{
24-
assets: ['CHANGELOG.md', 'dist/**'],
37+
assets: ['CHANGELOG.md'],
2538
},
2639
],
2740
],

0 commit comments

Comments
 (0)