ci: Build pre-release versions (#1606)

This commit is contained in:
Benjamin
2024-01-22 00:29:57 -08:00
committed by GitHub
parent efb2d5ef32
commit ec2c2d8ccb
5 changed files with 6693 additions and 12 deletions

View File

@@ -0,0 +1,24 @@
{
"branches": [
"main",
{
"name": "dev",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer", {
"releaseRules": [
{ "type": "build", "scope": "Needs bump", "release": "patch" }
]
}
],
[
"@semantic-release/exec",
{
"verifyReleaseCmd": "echo ${nextRelease.version} > .VERSION"
}
]
]
}