mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-08 09:47:42 +00:00
ci: publish releases (#3647)
* 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 a0c8ae8e033edb6faf758868019e9fe8cd41832d.
* fix: pass wh secrets
* fix: configure discord webhook
* fix: update goreleaser
* fix: env format
* remove test channel
This commit is contained in:
parent
4261959914
commit
8d0cf9f368
4
.github/workflows/zitadel.yml
vendored
4
.github/workflows/zitadel.yml
vendored
@ -65,12 +65,14 @@ jobs:
|
|||||||
if: steps.semantic.outputs.new_release_published == 'true' && github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch'
|
if: steps.semantic.outputs.new_release_published == 'true' && github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch'
|
||||||
with:
|
with:
|
||||||
distribution: goreleaser
|
distribution: goreleaser
|
||||||
version: v1.5.0
|
version: v1.8.3
|
||||||
args: release
|
args: release
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
GORELEASER_TOKEN_TAP: ${{ steps.generate-token.outputs.token }}
|
GORELEASER_TOKEN_TAP: ${{ steps.generate-token.outputs.token }}
|
||||||
RELEASE_VERSION: ${{ steps.semantic.outputs.release-version }} # I think this line is not needed. Nevertheless, it's explicit
|
RELEASE_VERSION: ${{ steps.semantic.outputs.release-version }} # I think this line is not needed. Nevertheless, it's explicit
|
||||||
|
DISCORD_WEBHOOK_ID: "976058224484687932"
|
||||||
|
DISCORD_WEBHOOK_TOKEN: "${{ secrets.DISCORD_WEBHOOK_TOKEN }}"
|
||||||
- name: Publish go coverage
|
- name: Publish go coverage
|
||||||
uses: codecov/codecov-action@v3.1.0
|
uses: codecov/codecov-action@v3.1.0
|
||||||
with:
|
with:
|
||||||
|
@ -4,7 +4,7 @@ release:
|
|||||||
github:
|
github:
|
||||||
owner: zitadel
|
owner: zitadel
|
||||||
name: zitadel
|
name: zitadel
|
||||||
draft: true
|
draft: false
|
||||||
prerelease: auto
|
prerelease: auto
|
||||||
|
|
||||||
before:
|
before:
|
||||||
@ -91,5 +91,5 @@ brews:
|
|||||||
|
|
||||||
announce:
|
announce:
|
||||||
discord:
|
discord:
|
||||||
enabled: false #enable when we release v2
|
enabled: true
|
||||||
message_template: 'ZITADEL {{ .Tag }} is ready! Check the notes: https://github.com/zitadel/zitadel/releases/tag/{{ .Tag }}'
|
message_template: 'ZITADEL {{ .Tag }} is ready! Check the notes: https://github.com/zitadel/zitadel/releases/tag/{{ .Tag }}'
|
||||||
|
@ -2,7 +2,7 @@ module.exports = {
|
|||||||
branches: [
|
branches: [
|
||||||
{name: 'main'},
|
{name: 'main'},
|
||||||
{name: '1.x.x', range: '1.x.x', channel: '1.x.x'},
|
{name: '1.x.x', range: '1.x.x', channel: '1.x.x'},
|
||||||
{name: 'v2', prerelease: true},
|
{name: 'v2-alpha', prerelease: true},
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
"@semantic-release/commit-analyzer"
|
"@semantic-release/commit-analyzer"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user