-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.releaserc.json
22 lines (22 loc) · 960 Bytes
/
.releaserc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)\nas well as the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)\nspecification."
}
],
[
"@semantic-release/exec",
{
"verifyConditionsCmd": "./bin/sm-verify",
"prepareCmd": "poetry version ${nextRelease.version}",
"publishCmd": "poetry config repositories.repo https://upload.pypi.org/legacy/ && poetry publish --build --repository repo --username __token__ --password $PYPI_TOKEN --no-interaction -vvv"
}
],
"@semantic-release/github",
"@semantic-release/git"
]
}