feat: semantic versioning, github action features, writes a version file, and tags Docker images
parent
65a3fe5e53
commit
69c4f1ac57
@ -1,18 +1,29 @@
|
|||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
|
||||||
|
|
||||||
# Distribution / packaging
|
# Distribution / packaging
|
||||||
.Python
|
.Python
|
||||||
build/
|
build/
|
||||||
dist/
|
dist/
|
||||||
|
lib/
|
||||||
|
include/
|
||||||
|
node_modules/
|
||||||
|
|
||||||
# Environments
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
venv/
|
venv/
|
||||||
|
|
||||||
# Config testing and notes
|
# Local testing and notes
|
||||||
config
|
config
|
||||||
config/
|
config/
|
||||||
config.yaml
|
config.yaml
|
||||||
|
govee2mqtt.dat
|
||||||
|
npm-debug.log
|
||||||
NOTES
|
NOTES
|
||||||
|
coverage/
|
||||||
|
dist/
|
||||||
|
|
||||||
|
# Apple
|
||||||
|
.DS_Store
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"branches": ["main"],
|
||||||
|
"plugins": [
|
||||||
|
"@semantic-release/commit-analyzer",
|
||||||
|
"@semantic-release/release-notes-generator",
|
||||||
|
["@semantic-release/changelog", { "changelogFile": "CHANGELOG.md" }],
|
||||||
|
["@semantic-release/git", {
|
||||||
|
"assets": ["CHANGELOG.md", "package.json", "VERSION"],
|
||||||
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
||||||
|
}],
|
||||||
|
"@semantic-release/github"
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue