-
-
Notifications
You must be signed in to change notification settings - Fork 376
Expand file tree
/
Copy path.release-it.json
More file actions
20 lines (20 loc) · 964 Bytes
/
.release-it.json
File metadata and controls
20 lines (20 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"_": "CI will switch the release here to true",
"github": {
"release": false,
"assets": "brew-distribution/*.zip",
"releaseNotes": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs"
},
"git": {
"requireCleanWorkingDir": false,
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs"
},
"buildCommand": "yarn package:x64; yarn package:arm64",
"hooks": {
"before:bump": "yarn declarations; yarn build:schemas",
"after:release": "gh workflow run release.yml -f version=${version}",
"_": "CI will remove the _ from both of the below lines",
"_after:bump": "yarn package:x64; yarn package:arm64",
"_after:release": "export VERSION=${version}; echo 'VERSION=${version}' >> $GITHUB_ENV"
}
}