Files
zitadel/.releaserc.js
T

52 lines
1.4 KiB
JavaScript
Raw Normal View History

2020-03-19 14:39:06 +01:00
module.exports = {
2023-07-17 10:08:20 +02:00
branches: [
{ name: "next" },
2023-08-11 14:49:28 +02:00
{ name: "next-rc", prerelease: "rc" },
2023-07-17 10:08:20 +02:00
],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
2023-08-11 14:49:28 +02:00
[
"@semantic-release/github",
{
draftRelease: true,
successComment: false,
2023-08-11 14:49:28 +02:00
assets: [
{
2025-10-23 20:08:24 +02:00
path: ".artifacts/pack/zitadel-linux-amd64.tar.gz",
2023-08-11 14:49:28 +02:00
label: "zitadel-linux-amd64.tar.gz",
},
{
2025-10-23 20:08:24 +02:00
path: ".artifacts/pack/zitadel-linux-arm64.tar.gz",
2023-08-11 14:49:28 +02:00
label: "zitadel-linux-arm64.tar.gz",
},
{
2025-10-23 20:08:24 +02:00
path: ".artifacts/pack/zitadel-windows-amd64.tar.gz",
2023-08-11 14:49:28 +02:00
label: "zitadel-windows-amd64.tar.gz",
},
{
2025-10-23 20:08:24 +02:00
path: ".artifacts/pack/zitadel-windows-arm64.tar.gz",
2023-08-11 14:49:28 +02:00
label: "zitadel-windows-arm64.tar.gz",
},
{
2025-10-23 20:08:24 +02:00
path: ".artifacts/pack/zitadel-darwin-amd64.tar.gz",
2023-08-11 14:49:28 +02:00
label: "zitadel-darwin-amd64.tar.gz",
},
{
2025-10-23 20:08:24 +02:00
path: ".artifacts/pack/zitadel-darwin-arm64.tar.gz",
2023-08-11 14:49:28 +02:00
label: "zitadel-darwin-arm64.tar.gz",
},
{
2025-10-23 20:08:24 +02:00
path: ".artifacts/pack/zitadel-login.tar.gz",
label: "zitadel-login.tar.gz",
},
{
path: ".artifacts/pack/checksums.txt",
2023-08-11 14:49:28 +02:00
label: "checksums.txt",
}
],
},
],
],
};