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
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
dist/
|
||||
lib/
|
||||
include/
|
||||
node_modules/
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
venv/
|
||||
|
||||
# Config testing and notes
|
||||
# Local testing and notes
|
||||
config
|
||||
config/
|
||||
config.yaml
|
||||
govee2mqtt.dat
|
||||
npm-debug.log
|
||||
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