mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-19 10:11:31 +00:00
chore: adding conditions for upload for dockers and brews (#4212)
* chore: removing unneeded channel * fix: enabled tag push Co-authored-by: Livio Spring <livio.a@gmail.com>
This commit is contained in:
parent
69534a2f7a
commit
e09c7af49f
@ -5,6 +5,10 @@ release:
|
|||||||
owner: zitadel
|
owner: zitadel
|
||||||
name: zitadel
|
name: zitadel
|
||||||
draft: false
|
draft: false
|
||||||
|
# If set to auto, will mark the release as not ready for production
|
||||||
|
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
|
||||||
|
# If set to true, will mark the release as not ready for production.
|
||||||
|
# Default is false.
|
||||||
prerelease: auto
|
prerelease: auto
|
||||||
|
|
||||||
before:
|
before:
|
||||||
@ -43,6 +47,14 @@ dockers:
|
|||||||
dockerfile: build/Dockerfile
|
dockerfile: build/Dockerfile
|
||||||
build_flag_templates:
|
build_flag_templates:
|
||||||
- "--platform=linux/amd64"
|
- "--platform=linux/amd64"
|
||||||
|
# Skips the docker push.
|
||||||
|
# Could be useful if you also do draft releases.
|
||||||
|
#
|
||||||
|
# If set to auto, the release will not be pushed to the Docker repository
|
||||||
|
# in case there is an indicator of a prerelease in the tag, e.g. v1.0.0-rc1.
|
||||||
|
#
|
||||||
|
# Defaults to false.
|
||||||
|
skip_push: auto
|
||||||
- image_templates:
|
- image_templates:
|
||||||
- ghcr.io/zitadel/zitadel:{{ .Tag }}-arm64
|
- ghcr.io/zitadel/zitadel:{{ .Tag }}-arm64
|
||||||
- ghcr.io/zitadel/zitadel:{{ .ShortCommit }}-arm64
|
- ghcr.io/zitadel/zitadel:{{ .ShortCommit }}-arm64
|
||||||
@ -51,6 +63,7 @@ dockers:
|
|||||||
dockerfile: build/Dockerfile
|
dockerfile: build/Dockerfile
|
||||||
build_flag_templates:
|
build_flag_templates:
|
||||||
- "--platform=linux/arm64"
|
- "--platform=linux/arm64"
|
||||||
|
skip_push: auto
|
||||||
|
|
||||||
docker_manifests:
|
docker_manifests:
|
||||||
- id: zitadel-latest
|
- id: zitadel-latest
|
||||||
@ -58,6 +71,8 @@ docker_manifests:
|
|||||||
image_templates:
|
image_templates:
|
||||||
- ghcr.io/zitadel/zitadel:{{ .Tag }}-amd64
|
- ghcr.io/zitadel/zitadel:{{ .Tag }}-amd64
|
||||||
- ghcr.io/zitadel/zitadel:{{ .Tag }}-arm64
|
- ghcr.io/zitadel/zitadel:{{ .Tag }}-arm64
|
||||||
|
# Skips can and shall be set for individual manifests same as in dockers
|
||||||
|
skip_push: auto
|
||||||
- id: zitadel-Tag
|
- id: zitadel-Tag
|
||||||
name_template: ghcr.io/zitadel/zitadel:{{ .Tag }}
|
name_template: ghcr.io/zitadel/zitadel:{{ .Tag }}
|
||||||
image_templates:
|
image_templates:
|
||||||
@ -111,6 +126,10 @@ brews:
|
|||||||
- name: git
|
- name: git
|
||||||
install: |-
|
install: |-
|
||||||
bin.install "zitadel"
|
bin.install "zitadel"
|
||||||
|
# If set to auto, the release will not be uploaded to the homebrew tap
|
||||||
|
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
|
||||||
|
# Default is false.
|
||||||
|
skip_upload: auto
|
||||||
|
|
||||||
announce:
|
announce:
|
||||||
discord:
|
discord:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user