mirror of
https://github.com/infinilabs/coco-app.git
synced 2025-12-14 18:47:42 +01:00
* 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
15 lines
250 B
TypeScript
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;
|