Skip to content

Commit

Permalink
fix: sem release
Browse files Browse the repository at this point in the history
  • Loading branch information
ekremney committed Dec 4, 2023
1 parent 1d95672 commit 29e5715
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .releaserc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@ module.exports = {
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/changelog", {
"changelogFile": "CHANGELOG.md",
changelogFile: "CHANGELOG.md",
}],
['@semantic-release/npm', {
npmPublish: false,
}],
"@semantic-release/npm",
["@semantic-release/git", {
"assets": ["package.json", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
assets: ['package.json', 'package-lock.json', 'CHANGELOG.md', 'docs/index.html'],
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
['@semantic-release/exec', {
prepareCmd: 'npm run deploy && npm run test-postdeploy && npm run docs',
publishCmd: 'npm run deploy-routes'
}],
["@semantic-release/github", {}]
],
branches: ['main'],
};
};

0 comments on commit 29e5715

Please sign in to comment.