mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
29 lines
663 B
Text
29 lines
663 B
Text
|
{
|
||
|
"name": "pivpn",
|
||
|
"plugins": [
|
||
|
"@semantic-release/commit-analyzer",
|
||
|
"@semantic-release/release-notes-generator",
|
||
|
[
|
||
|
"@semantic-release/changelog",
|
||
|
{
|
||
|
"changelogFile": "./CHANGELOG.md"
|
||
|
}
|
||
|
],
|
||
|
["@semantic-release/github", {
|
||
|
"assets": [
|
||
|
{"path": "dist/asset.min.css", "label": "CSS distribution"},
|
||
|
{"path": "dist/asset.min.js", "label": "JS distribution"}
|
||
|
]
|
||
|
}]
|
||
|
],
|
||
|
"release": {
|
||
|
"branches": [ "master", "beta", "test" ]
|
||
|
},
|
||
|
|
||
|
"branches": [
|
||
|
{name: 'master'},
|
||
|
{name: 'beta', channel: 'beta', prerelease: true},
|
||
|
{name: 'test', channel: 'test', prerelease: true}
|
||
|
]
|
||
|
}
|