Skip to content

Commit

Permalink
fix dockers.skip_push template
Browse files Browse the repository at this point in the history
  • Loading branch information
qrkourier committed Jul 25, 2024
1 parent 23d0862 commit 36c714a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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: "{{ ne .GitURL "https://github.com/helm/chart-releaser" | toYaml }}"
skip_push: "{{ if ne .GitURL 'https://github.com/helm/chart-releaser' }}true{{ else }}false{{ end }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -77,7 +77,7 @@ dockers:

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

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

- goos: linux
goarch: ppc64le
skip_push: "{{ ne .GitURL "https://github.com/helm/chart-releaser" | toYaml }}"
skip_push: "{{ if ne .GitURL 'https://github.com/helm/chart-releaser' }}true{{ else }}false{{ end }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand Down

0 comments on commit 36c714a

Please sign in to comment.