mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
8d0cf9f368
* ci: publish releases
BREAKING CHANGE: 🧨 increment major version
* fix: release on v2-alpha
* remove test release channel
* fix: push to discord from goreleaser
* fix: Revert "remove test release channel"
This reverts commit a0c8ae8e03
.
* fix: pass wh secrets
* fix: configure discord webhook
* fix: update goreleaser
* fix: env format
* remove test channel
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
module.exports = {
|
|
branches: [
|
|
{name: 'main'},
|
|
{name: '1.x.x', range: '1.x.x', channel: '1.x.x'},
|
|
{name: 'v2-alpha', prerelease: true},
|
|
],
|
|
plugins: [
|
|
"@semantic-release/commit-analyzer"
|
|
]
|
|
};
|