Skip to content

Commit

Permalink
fix(release): include explicit list of assets
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed Sep 18, 2024
1 parent 2368c3e commit 4452c2d
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .releaserc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,34 @@ module.exports = {
}],
"@semantic-release/npm",
["@semantic-release/git", {
"assets": ["package.json", "CHANGELOG.md", 'dist/*.md5'],
"assets": [
"package.json",
"CHANGELOG.md",
'dist/rum-standalone.md5',
'dist/rum-standalone-404.md5'
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
["@semantic-release/github", {}]
["@semantic-release/github", {
"assets": [
{
"path": "dist/rum-standalone.js",
"label": "RUM Standalone JS"
},
{
"path": "dist/rum-standalone.md5",
"label": "RUM Standalone Hash"
},
{
"path": "dist/rum-standalone-404.js",
"label": "RUM Standalone 404 JS"
},
{
"path": "dist/rum-standalone-404.md5",
"label": "RUM Standalone 404 Hash"
}
]
}]
],
branches: ['main', '1.x'],
};

0 comments on commit 4452c2d

Please sign in to comment.