Install Semantic Release
This commit is contained in:
parent
c424b6f8db
commit
89d1f47fac
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,6 +6,7 @@
|
|||||||
.pytest_cache
|
.pytest_cache
|
||||||
.python-version
|
.python-version
|
||||||
build/
|
build/
|
||||||
|
node_modules/
|
||||||
tests/output_*
|
tests/output_*
|
||||||
**/__pycache__
|
**/__pycache__
|
||||||
dist
|
dist
|
||||||
|
52
package.json
Normal file
52
package.json
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
{
|
||||||
|
"name": "python-betterproto-semantic-release",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Encapsulate dependencies needed to use semantic-release",
|
||||||
|
"dependencies": {
|
||||||
|
"@semantic-release/exec": "^5.0.0",
|
||||||
|
"@semantic-release/git": "^9.0.0",
|
||||||
|
"@semantic-release/gitlab": "^6.0.4",
|
||||||
|
"conventional-changelog-eslint": "^3.0.8",
|
||||||
|
"semantic-release": "^17.1.1"
|
||||||
|
},
|
||||||
|
"release": {
|
||||||
|
"branches": [
|
||||||
|
"master",
|
||||||
|
{
|
||||||
|
"name": "rc",
|
||||||
|
"prerelease": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
[
|
||||||
|
"@semantic-release/commit-analyzer",
|
||||||
|
{
|
||||||
|
"preset": "angular"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"@semantic-release/release-notes-generator",
|
||||||
|
{
|
||||||
|
"preset": "angular"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"@semantic-release/exec",
|
||||||
|
{
|
||||||
|
"prepareCmd": "poetry version ${nextRelease.version}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"@semantic-release/github",
|
||||||
|
[
|
||||||
|
"@semantic-release/git",
|
||||||
|
{
|
||||||
|
"assets": [
|
||||||
|
"pyproject.toml"
|
||||||
|
],
|
||||||
|
"message": "Release v${nextRelease.version} [skip ci]"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"repositoryUrl": "ssh://git@github.com/danielgtaylor/python-betterproto.git"
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user