mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
970586dfc9
* chore: docker vars * test --dry-run * use correct args * test * test * well, myb * arg(h) * something is broken with args * try gh action * try to run semrel * use branches flag * releaserc * works * final
16 lines
502 B
JavaScript
16 lines
502 B
JavaScript
module.exports = {
|
|
branches: ["master"],
|
|
plugins: [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/github",
|
|
["@semantic-release/exec", {
|
|
"prepareCmd": "echo '::set-env name=CAOS_NEXT_VERSION::v${nextRelease.version}'"
|
|
}],
|
|
["semantic-release-docker", {
|
|
"registryUrl": "docker.pkg.github.com",
|
|
"name": "caos/zitadel/zitadel"
|
|
}
|
|
],
|
|
]
|
|
}; |