ci: modernize workflows for gitflow with SSH signing

This commit is contained in:
badblocks 2025-07-30 13:18:40 -07:00
parent 72038d9ad1
commit 0484c8c98b
No known key found for this signature in database
2 changed files with 7 additions and 4 deletions

1
.nvmrc Normal file
View file

@ -0,0 +1 @@
v24.4.1

View file

@ -1,5 +1,7 @@
{
"branches": ["release"],
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
@ -14,9 +16,9 @@
[
"@semantic-release/git",
{
"assets": ["CHANGELOG.md", "package.json"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
"assets": ["CHANGELOG.md", "package.json", "package-lock.json", "bun.lock"],
"message": "chore: Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}