forked from bionic-gpt/bionic-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc.json
46 lines (46 loc) · 1.52 KB
/
.releaserc.json
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
{
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/github", {
"successComment": false,
"failTitle": false,
"assets": [
{"path": "tmp/earthly/chrome-video.mp4", "label": "chrome-video.mp4"}
]
}],
["@semantic-release-plus/docker", {
"name": "ghcr.io/bionic-gpt/bionicgpt:latest",
"skipLogin": true
}],
["@semantic-release-plus/docker", {
"name": "ghcr.io/bionic-gpt/bionicgpt-k8s-operator:latest",
"skipLogin": true
}],
["@semantic-release-plus/docker", {
"name": "ghcr.io/bionic-gpt/bionicgpt-db-migrations:latest",
"skipLogin": true
}],
["@semantic-release-plus/docker", {
"name": "ghcr.io/bionic-gpt/bionicgpt-pipeline-job:latest",
"skipLogin": true
}],
["@semantic-release-plus/docker", {
"name": "ghcr.io/bionic-gpt/bionicgpt-rabbitmq:latest",
"skipLogin": true
}],
["@semantic-release/exec", {
"publishCmd": "./update-config.sh ${nextRelease.version}",
"execCwd": "./.github/workflows"
}],
["@semantic-release/exec", {
"publishCmd": "./update-version.sh ${nextRelease.version}",
"execCwd": "./.github/workflows"
}],
["@semantic-release/exec", {
"publishCmd": "./update-git.sh ${nextRelease.version}",
"execCwd": "./.github/workflows"
}]
]
}