mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-02 14:22:21 +00:00
# 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
(cherry picked from commit 8693de8170)
52 lines
1.4 KiB
JavaScript
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",
|
|
}
|
|
],
|
|
},
|
|
],
|
|
],
|
|
};
|