feat: add release-please for conventional-commit based releases

This commit is contained in:
Noortheen Raja 2024-12-11 00:16:05 +05:30
parent 5015fb5259
commit 8bdfb9bc0e
3 changed files with 34 additions and 0 deletions

20
.github/workflows/release-please.yml vendored Normal file
View file

@ -0,0 +1,20 @@
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
# todo: add block to run rever's Authors and appimage activity on release

View file

@ -0,0 +1,3 @@
{
".": "0.19.0"
}

View file

@ -0,0 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "python",
"bump-minor-pre-major": true,
"include-v-in-tag": false,
"bump-patch-for-minor-pre-major": true,
"packages": {
".": {
}
}
}