Files
coco-app/.release-it.ts
ayangweb ca9adb515b chore: support for github action releases (#169)
* chore: support for github action releases (#165)

* chore: support for generating update files (#168)

* chore: support for github action releases

* chore: support for generating update files

* chore: include TAURI_SIGNING_PRIVATE_KEY_PASSWORD variable in the release

* chore: replacing the pubkey when updating
2025-02-21 16:52:52 +08:00

15 lines
250 B
TypeScript

import type { Config } from "release-it";
export default {
git: {
commitMessage: "v${version}",
tagName: "v${version}",
},
npm: {
publish: false,
},
hooks: {
"after:bump": "tsx scripts/release.ts",
},
} satisfies Config;