mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
24 lines
528 B
JSON
24 lines
528 B
JSON
{
|
|
"npm": false,
|
|
"git": {
|
|
"requireCleanWorkingDir": true,
|
|
"commitMessage": "chore(release): v${version}",
|
|
"tagName": "v${version}",
|
|
"push": true
|
|
},
|
|
"github": {
|
|
"release": true,
|
|
"assets": ["android/app/build/outputs/apk/release/app-release.apk"]
|
|
},
|
|
"plugins": {
|
|
"@release-it/conventional-changelog": {
|
|
"preset": "conventionalcommits",
|
|
"infile": "CHANGELOG.md"
|
|
}
|
|
},
|
|
"hooks": {
|
|
"before:init": ["pnpm run lint:check", "pnpm run typecheck"],
|
|
"before:github:release": "pnpm run build:signed:apk"
|
|
}
|
|
}
|