-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.releaserc
37 lines (37 loc) · 1.03 KB
/
.releaserc
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
37
{
"branches": [
"main",
{
"name": "prerelease",
"prerelease": true
}
],
"repositoryUrl": "https://github.com/joelday/papyrus-lang.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
],
"verifyConditions": [
"@semantic-release/github"
],
"prepare": [
{
"path": "@semantic-release/exec",
"cmd": "vsce package --no-git-tag-version --no-update-package-json --githubBranch %BRANCH_NAME% %PRERELEASE_FLAG% --out papyrus-lang-vscode.vsix %VERSION%"
}
],
"publish": [
{
"path": "@semantic-release/exec",
"cmd": "vsce publish --skip-duplicate --packagePath papyrus-lang-vscode.vsix %PRERELEASE_FLAG%"
},
{
"path": "@semantic-release/github",
"assets": [
"CHANGELOG.md",
"papyrus-lang-vscode.vsix"
]
}
]
}