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

Commit

Permalink
fix(semantic-release): update included assets
Browse files Browse the repository at this point in the history
- include node_modules in release archive (required for github actions)

[ch8743]
  • Loading branch information
blake-newman committed Feb 13, 2020
1 parent f3f4ea0 commit 542f756
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,24 @@ module.exports = {
changelogFile: 'CHANGELOG.md',
},
],
'@semantic-release/github',
[
'@semantic-release/github',
{
assets: [
'CHANGELOG.md',
'dist/**',
'node_modules/**',
'package.json',
'yarn.lock',
'action.yml',
'LICENSE.md',
],
},
],
[
'@semantic-release/git',
{
assets: ['CHANGELOG.md', 'dist/**'],
assets: ['CHANGELOG.md'],
},
],
],
Expand Down

0 comments on commit 542f756

Please sign in to comment.