Skip to content

Commit

Permalink
fix: use correct docker registry url
Browse files Browse the repository at this point in the history
  • Loading branch information
twelvelabs committed Jun 1, 2023
1 parent a6599d4 commit 6f4ab7a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ changelog:

dockers:
- image_templates:
- "gcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-amd64"
- "ghcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-amd64"
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
Expand All @@ -63,7 +63,7 @@ dockers:
use: buildx

- image_templates:
- "gcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-arm64"
- "ghcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-arm64"
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
Expand All @@ -76,15 +76,15 @@ dockers:
use: buildx

docker_manifests:
- name_template: "gcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}"
- name_template: "ghcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}"
image_templates:
- "gcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-amd64"
- "gcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-arm64"
- "ghcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-amd64"
- "ghcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-arm64"

- name_template: "gcr.io/twelvelabs/{{ .ProjectName }}:latest"
- name_template: "ghcr.io/twelvelabs/{{ .ProjectName }}:latest"
image_templates:
- "gcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-amd64"
- "gcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-arm64"
- "ghcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-amd64"
- "ghcr.io/twelvelabs/{{ .ProjectName }}:{{ .Tag }}-arm64"

report_sizes: true

Expand Down

0 comments on commit 6f4ab7a

Please sign in to comment.