-
Notifications
You must be signed in to change notification settings - Fork 77
/
.releaserc
82 lines (82 loc) · 2.45 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{ "type": "chore", "release": "patch" }
],
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
}
}
]
],
"prepare": [
"@semantic-release/npm",
{
"//": "build the alpine, macos, linux and windows binaries",
"path": "@semantic-release/exec",
"cmd": "npm i -g [email protected] && pkg . --options max_old_space_size=32768 -t node14-alpine-x64,node14-linux-x64,node14-macos-x64,node14-win-x64"
},
{
"//": "shasum all binaries",
"path": "@semantic-release/exec",
"cmd": "shasum -a 256 snyk-to-html-linux > snyk-to-html-linux.sha256 && shasum -a 256 snyk-to-html-macos > snyk-to-html-macos.sha256 && shasum -a 256 snyk-to-html-win.exe > snyk-to-html-win.exe.sha256 && shasum -a 256 snyk-to-html-alpine > snyk-to-html-alpine.sha256"
}
],
"publish": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": [
{
"path": "./snyk-to-html-linux",
"name": "snyk-to-html-linux",
"label": "snyk-to-html-linux"
},
{
"path": "./snyk-to-html-linux.sha256",
"name": "snyk-to-html-linux.sha256",
"label": "snyk-to-html-linux.sha256"
},
{
"path": "./snyk-to-html-macos",
"name": "snyk-to-html-macos",
"label": "snyk-to-html-macos"
},
{
"path": "./snyk-to-html-macos.sha256",
"name": "snyk-to-html-macos.sha256",
"label": "snyk-to-html-macos.sha256"
},
{
"path": "./snyk-to-html-win.exe",
"name": "snyk-to-html-win.exe",
"label": "snyk-to-html-win.exe"
},
{
"path": "./snyk-to-html-win.exe.sha256",
"name": "snyk-to-html-win.exe.sha256",
"label": "snyk-to-html-win.exe.sha256"
},
{
"path": "./snyk-to-html-alpine",
"name": "snyk-to-html-alpine",
"label": "snyk-to-html-alpine"
},
{
"path": "./snyk-to-html-alpine.sha256",
"name": "snyk-to-html-alpine.sha256",
"label": "snyk-to-html-alpine.sha256"
}
]
},
{
"//": "upload to s3",
"path": "@semantic-release/exec",
"cmd": "./scripts/upload-to-s3.sh ${nextRelease.version}"
}
]
}