-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.releaserc.yml
More file actions
29 lines (29 loc) · 939 Bytes
/
.releaserc.yml
File metadata and controls
29 lines (29 loc) · 939 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
{
"branches": ["main", { name: "beta", prerelease: true }],
"plugins":
[
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@codedependant/semantic-release-docker",
{
"dockerRegistry": "ghcr.io",
"dockerProject": "betagouv",
"dockerImage": "matomo-to-pg/sync",
"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}}",
],
"dockerArgs":
{
"BUILD_VERSION": "{{major}}.{{minor}}.{{patch}}",
"COMMIT_SHA": "{{git_sha}}",
},
},
],
],
}