forked from XinFinOrg/open-attestation-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc
32 lines (32 loc) · 824 Bytes
/
.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
{
"prepare": [
"@semantic-release/npm",
{
"path": "@semantic-release/exec",
"cmd": "pkg ./package.json --out-path dist/@govtechsg"
}
],
"publish": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": [
{
"path": "./dist/@govtechsg/open-attestation-cli-linux",
"name": "open-attestation-linux",
"label": "open-attestation-linux"
},
{
"path": "./dist/@govtechsg/open-attestation-cli-macos",
"name": "open-attestation-macos",
"label": "open-attestation-macos"
},
{
"path": "./dist/@govtechsg/open-attestation-cli-win.exe",
"name": "open-attestation-win.exe",
"label": "open-attestation-win.exe"
}
]
}
]
}