chore: replace release-please with commit-and-tag-version

pull/5522/head
Henrique Dias 2025-11-13 14:03:41 +01:00
parent 8a7279e3ee
commit 1495ee8dd8
No known key found for this signature in database
4 changed files with 22 additions and 16 deletions

View File

@ -1,15 +0,0 @@
name: Release Please
on:
push:
branches:
- master
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.GH_PAT }}
release-type: simple

14
.versionrc Normal file
View File

@ -0,0 +1,14 @@
{
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance improvements" },
{ "type": "revert", "section": "Reverts" },
{ "type": "refactor", "section": "Refactorings" },
{ "type": "build", "section": "Build" },
{ "type": "ci", "hidden": true },
{ "type": "test", "hidden": true },
{ "type": "chore", "hidden": true },
{ "type": "docs", "hidden": true }
]
}

View File

@ -53,6 +53,14 @@ clean: clean-tools ## Clean
## Release:
.PHONY: release-dry-run
release-dry-run:
pnpm dlx commit-and-tag-version --dry-run --skip
.PHONY: release
release:
pnpm dlx commit-and-tag-version -s
.PHONY: site
site: ## Build site
@rm -rf www/public

View File

@ -1 +0,0 @@
2.45.2