diff --git a/release.config.js b/release.config.js index 4ae7322..a962fc2 100644 --- a/release.config.js +++ b/release.config.js @@ -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}", },