1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-08-10 22:31:32 +02:00

build: Add build scripts

Signed-off-by: Oliver Rau <oliver.rau@de.ibm.com>
This commit is contained in:
Oliver Rau
2023-07-18 15:55:47 +02:00
parent aa0f043b95
commit 7d9dedb80f
2 changed files with 152 additions and 0 deletions

67
.releaserc Normal file
View File

@@ -0,0 +1,67 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"releasedLabels": false
}
]
],
"analyzeCommits": {
"releaseRules": [
{
"type": "build",
"release": "patch"
}
]
},
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "chore",
"section": "Miscellaneous Chores"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
}
]
},
"tagFormat": "v${version}",
"branches": [
{
"name": "main"
}
]
}