mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-04 23:45:07 +00:00
1c354ca977
* pipeline runs on ubuntu instead of docker * added Makefile to build zitadel core (backend) and console (frontend) * pipeline runs in parallel where possible * pipeline is split into multiple jobs * removed goreleaser * added command to check if zitadel instance is running
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
module.exports = {
|
|
branches: [
|
|
{ name: "main" },
|
|
{ name: "next" },
|
|
{ name: "ci/improve-make", prerelease: "2.29-ignore-me" }
|
|
],
|
|
plugins: [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/github"
|
|
],
|
|
};
|