Skip to content

Commit

Permalink
FIX releaser to work with forks
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Clegg <m@cle.gg>
  • Loading branch information
mattclegg committed Jul 11, 2024
1 parent 90643b9 commit 525ef7c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ snapshot:
dockers:
- goos: linux
goarch: amd64
skip_push: false
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -77,7 +77,7 @@ dockers:

- goos: linux
goarch: arm64
skip_push: false
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -97,7 +97,7 @@ dockers:
- goos: linux
goarch: arm
goarm: 7
skip_push: false
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -116,7 +116,7 @@ dockers:

- goos: linux
goarch: s390x
skip_push: false
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -135,7 +135,7 @@ dockers:

- goos: linux
goarch: ppc64le
skip_push: false
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand Down Expand Up @@ -204,7 +204,7 @@ brews:
name: helm-bot
email: helm-bot@users.noreply.github.com
directory: Formula
homepage: https://github.com/helm/chart-releaser/
homepage: "{{ .GitURL }}"
description: Hosting Helm Charts via GitHub Pages and Releases
install: |
bin.install "cr"
Expand Down

0 comments on commit 525ef7c

Please sign in to comment.