0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-18 18:25:18 +00:00
htmlpurifier/release.config.js
Kieran d82f3d996a
fix: semantic release (#339)
* fix: semantic release

* update git assets
2022-09-18 15:15:38 -04:00

34 lines
630 B
JavaScript

module.exports = {
debug: true,
branch: 'master',
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/changelog',
{
'changelogFile': 'NEWS'
}
],
[
'@semantic-release/exec',
{
'prepareCmd': 'php update-for-release ${nextRelease.version}'
}
],
[
'@semantic-release/git',
{
'assets': [
'VERSION',
'NEWS',
'Doxyfile',
'library/**/*',
'configdoc/**/*',
],
}
],
'@semantic-release/github'
],
}