-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.releaserc
More file actions
42 lines (42 loc) · 971 Bytes
/
Copy path.releaserc
File metadata and controls
42 lines (42 loc) · 971 Bytes
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
{
"branches": [
"main",
{
"name": "rc",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "build.zip",
"label": "Built Files"
}
],
"releasedLabels": "released"
}
],
[
"@codedependant/semantic-release-docker",
{
"dockerTags": [
"{{#if prerelease.[0]}}{{prerelease.[0]}}{{else}}latest{{/if}}",
"{{major}}-{{#if prerelease.[0]}}{{prerelease.[0]}}{{else}}latest{{/if}}",
"{{major}}.{{minor}}-{{#if prerelease.[0]}}{{prerelease.[0]}}{{else}}latest{{/if}}",
"{{version}}"
],
"dockerImage": "arq-ui",
"dockerProject": "antonk0",
"dockerPlatform": [
"linux/amd64",
"linux/arm64"
]
}
]
]
}