mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 10:50:16 +00:00
5d0cc9e072
Add support for Ubuntu Jammy (22.04) Add CI tests for Ubuntu Jammy Remove CI tests for Ubuntu Xenial Rename CI tests stages Add new CI Scripts to get pipeline code more "DRY" Update CI Scripts to exit on error with /bin/bash -e Add semantic-release settings Add CI Release step for PiVPN automated versioning
28 lines
663 B
Text
28 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}
|
|
]
|
|
}
|