config: add deployment workflow (#8)
This commit is contained in:
19
tooling/semver/release.config.cjs
Normal file
19
tooling/semver/release.config.cjs
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* @type {import('semantic-release').GlobalConfig}
|
||||
*/
|
||||
module.exports = {
|
||||
branches: ["main"],
|
||||
prepare: [
|
||||
"@semantic-release/changelog",
|
||||
"@semantic-release/npm",
|
||||
{
|
||||
"path": "@semantic-release/git",
|
||||
"assets": [
|
||||
"package.json",
|
||||
"package-lock.json",
|
||||
"CHANGELOG.md"
|
||||
],
|
||||
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
||||
}
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user