mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
767bc5ce6c
* chore: matrix build * chore: test goos goarch * fix: artifact path * chore: new download version * artifact paths
17 lines
717 B
JavaScript
17 lines
717 B
JavaScript
module.exports = {
|
|
branches: ["master"],
|
|
plugins: [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
["@semantic-release/github", {
|
|
"assets": [
|
|
{"path": ".artifacts/zitadel-darwin-amd64/zitadel-darwin-amd64", "label": "Darwin x86_64"},
|
|
{"path": ".artifacts/zitadel-linux-amd64/zitadel-linux-amd64", "label": "Linux x86_64"},
|
|
{"path": ".artifacts/zitadel-windows-amd64/zitadel-windows-amd64", "label": "Windows x86_64"}
|
|
]
|
|
}],
|
|
["@semantic-release/exec", {
|
|
"publishCmd": "echo '::set-env name=CAOS_NEXT_VERSION::${nextRelease.version}'"
|
|
}],
|
|
]
|
|
}; |