Skip to content

Commit

Permalink
fix: only push multi-arch images
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jan 10, 2025
1 parent a5d1b76 commit 2f7806d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.tmpl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ dockers:
use: buildx
dockerfile: "{{ .Var.dockerfile_static }}"
goarch: amd64
skip_push: true
ids:
- static-nosqlite
build_flag_templates:
Expand All @@ -409,6 +410,7 @@ dockers:
use: buildx
dockerfile: "{{ .Var.dockerfile_static }}"
goarch: arm64
skip_push: true
ids:
- static-nosqlite
build_flag_templates:
Expand All @@ -419,6 +421,7 @@ dockers:
use: buildx
dockerfile: "{{ .Var.dockerfile_alpine }}"
goarch: amd64
skip_push: true
ids:
- alpine-cgo-amd64
build_flag_templates:
Expand All @@ -436,6 +439,7 @@ dockers:
- "oryd/{{ .ProjectName }}:v{{ .Version }}-arm64"
use: buildx
goarch: arm64
skip_push: true
dockerfile: "{{ .Var.dockerfile_alpine }}"
ids:
- alpine-cgo-arm64
Expand All @@ -454,6 +458,7 @@ dockers:
- "oryd/{{ .ProjectName }}:v{{ .Version }}-armv7"
use: buildx
goarch: arm
skip_push: true
goarm: 7
dockerfile: "{{ .Var.dockerfile_alpine }}"
ids:
Expand All @@ -473,6 +478,7 @@ dockers:
- "oryd/{{ .ProjectName }}:v{{ .Version }}-armv6"
use: buildx
goarch: arm
skip_push: true
goarm: 6
dockerfile: "{{ .Var.dockerfile_alpine }}"
ids:
Expand Down

0 comments on commit 2f7806d

Please sign in to comment.