-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.release-it.json
36 lines (36 loc) · 1.29 KB
/
.release-it.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"plugins": {
"@release-it/bumper": {
"out": {
"file": "src-tauri/tauri.conf.json",
"path": "package.version"
}
}
},
"git": {
"requireBranch": "main",
"commitMessage": ":bookmark: feat(all): Release v${version}"
},
"hooks": {
"before:init": [
"git push",
"pnpm lint:fix"
],
"after:bump": [
"pnpm auto-changelog -p",
"pnpm readme"
],
"after:git:release": "echo 'After git push, before github release'",
"after:release": [
"gh repo edit https://github.com/angelespejo/macos-app-trial-extender -d \"MATE is an application that allows you to reset the trial period of native macos applications such as Final Cut Pro or Logic Pro.\"",
"gh repo edit https://github.com/angelespejo/macos-app-trial-extender --add-topic macos,dmg,app,tauri,js",
"echo 'Github action is now releasing: macos-app-trial-extender v${version} to https://github.com/angelespejo/macos-app-trial-extender.\n Check if all is ok 🌈🤖\n https://github.com/angelespejo/macos-app-trial-extender/actions'"
]
},
"github": {
"release": false
},
"npm": {
"release": false
}
}