Files
zitadel/.releaserc.js
Elio Bischof 8693de8170 chore: cleanup .releaserc.js (#10957)
# Which Problems Are Solved

For testing purposes, we modified the .reseaserc.js. The test relevant
changes are reverted.

# How the Problems Are Solved

- The test branch is removed from the branches array.
- The default releaseBodyTemplate value is used again.

# Additional Context

- Cleanup for #10956
2025-10-23 21:59:43 +02:00

52 lines
1.4 KiB
JavaScript

module.exports = {
branches: [
{ name: "next" },
{ name: "next-rc", prerelease: "rc" },
],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
draftRelease: true,
successComment: false,
assets: [
{
path: ".artifacts/pack/zitadel-linux-amd64.tar.gz",
label: "zitadel-linux-amd64.tar.gz",
},
{
path: ".artifacts/pack/zitadel-linux-arm64.tar.gz",
label: "zitadel-linux-arm64.tar.gz",
},
{
path: ".artifacts/pack/zitadel-windows-amd64.tar.gz",
label: "zitadel-windows-amd64.tar.gz",
},
{
path: ".artifacts/pack/zitadel-windows-arm64.tar.gz",
label: "zitadel-windows-arm64.tar.gz",
},
{
path: ".artifacts/pack/zitadel-darwin-amd64.tar.gz",
label: "zitadel-darwin-amd64.tar.gz",
},
{
path: ".artifacts/pack/zitadel-darwin-arm64.tar.gz",
label: "zitadel-darwin-arm64.tar.gz",
},
{
path: ".artifacts/pack/zitadel-login.tar.gz",
label: "zitadel-login.tar.gz",
},
{
path: ".artifacts/pack/checksums.txt",
label: "checksums.txt",
}
],
},
],
],
};