Skip to content

Commit

Permalink
ci: only include dist dir in assets (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel-Develops authored Aug 20, 2024
1 parent 46ebec3 commit 542edf5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ module.exports = {
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/github",
{
assets: ["dist/**/*"], // Include only the dist folder
},
],
[
"@semantic-release/git",
{
assets: ["dist/*"],
assets: ["dist/**/*"],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
Expand Down

0 comments on commit 542edf5

Please sign in to comment.