diff --git a/.goreleaser.yml b/.goreleaser.yml index c02d025fd41..a1b78341fce 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -63,46 +63,4 @@ builds: snapshot: - name_template: "{{ .Tag }}.next" - -dockers: - - image_templates: - - thorax/{{ .ProjectName }}:{{ .Version }}-amd64 - dockerfile: Dockerfile.release - use: buildx - skip_push: true - goarch: amd64 - ids: - - linux-amd64 - build_flag_templates: - - --platform=linux/amd64 - - - image_templates: - - thorax/{{ .ProjectName }}:{{ .Version }}-arm64 - dockerfile: Dockerfile.release - skip_push: true - use: buildx - goarch: arm64 - ids: - - linux-arm64 - build_flag_templates: - - --platform=linux/arm64/v8 - -docker_manifests: - - name_template: thorax/{{ .ProjectName }}:{{ .Version }} - skip_push: true - image_templates: - - thorax/{{ .ProjectName }}:{{ .Version }}-amd64 - - thorax/{{ .ProjectName }}:{{ .Version }}-arm64 - - - name_template: thorax/{{ .ProjectName }}:latest - skip_push: true - image_templates: - - thorax/{{ .ProjectName }}:{{ .Version }}-amd64 - - thorax/{{ .ProjectName }}:{{ .Version }}-arm64 - -announce: - slack: - enabled: false - # The name of the channel that the user selected as a destination for webhook messages. - channel: '#code-releases' + name_template: "{{ .Tag }}.next" \ No newline at end of file diff --git a/Makefile b/Makefile index 0793b8f9b32..5cb17ed21dd 100644 --- a/Makefile +++ b/Makefile @@ -309,8 +309,6 @@ release: git-submodules ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \ --clean --skip-validate - @docker image push --all-tags thorax/erigon - # since DOCKER_UID, DOCKER_GID are default initialized to the current user uid/gid, # we need separate envvars to facilitate creation of the erigon user on the host OS. ERIGON_USER_UID ?= 3473