Skip to content

Commit

Permalink
.goreleaser.yaml: Always push images
Browse files Browse the repository at this point in the history
This enables pushing unreleased images built from main as well.
  • Loading branch information
brancz committed May 19, 2023
1 parent 52637b4 commit 6e112f4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ dockers:
- "ghcr.io/brancz/locutus:{{ .Version }}-amd64"
use: buildx
dockerfile: Dockerfile
skip_push: false
build_flag_templates:
- "--platform=linux/amd64"
- image_templates:
- "ghcr.io/brancz/locutus:{{ .Version }}-arm64"
use: buildx
goarch: arm64
skip_push: false
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/arm64/v8"
docker_manifests:
- name_template: ghcr.io/brancz/locutus:{{ .Version }}
skip_push: false
image_templates:
- ghcr.io/brancz/locutus:{{ .Version }}-amd64
- ghcr.io/brancz/locutus:{{ .Version }}-arm64

0 comments on commit 6e112f4

Please sign in to comment.