Skip to content

Commit

Permalink
Merge pull request #5 from vshn/fix/repo
Browse files Browse the repository at this point in the history
Also fix the repository for goreleaser
  • Loading branch information
Kidswiss authored Sep 18, 2023
2 parents 8c67d18 + 5f19fa4 commit 13926a3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,27 @@ dockers:
build_flag_templates:
- "--platform=linux/amd64"
image_templates:
- "ghcr.io/vshn/appcat:v{{ .Version }}-amd64"
- "ghcr.io/vshn/appcat-apiserver:v{{ .Version }}-amd64"

- goarch: arm64
use: buildx
build_flag_templates:
- "--platform=linux/arm64/v8"
image_templates:
- "ghcr.io/vshn/appcat:v{{ .Version }}-arm64"
- "ghcr.io/vshn/appcat-apiserver:v{{ .Version }}-arm64"

docker_manifests:
# For prereleases, updating `latest` does not make sense.
# Only the image for the exact version should be pushed.
- name_template: "{{ if not .Prerelease }}ghcr.io/vshn/appcat:latest{{ end }}"
- name_template: "{{ if not .Prerelease }}ghcr.io/vshn/appcat-apiserver:latest{{ end }}"
image_templates:
- "ghcr.io/vshn/appcat:v{{ .Version }}-amd64"
- "ghcr.io/vshn/appcat:v{{ .Version }}-arm64"
- "ghcr.io/vshn/appcat-apiserver:v{{ .Version }}-amd64"
- "ghcr.io/vshn/appcat-apiserver:v{{ .Version }}-arm64"

- name_template: "ghcr.io/vshn/appcat:v{{ .Version }}"
- name_template: "ghcr.io/vshn/appcat-apiserver:v{{ .Version }}"
image_templates:
- "ghcr.io/vshn/appcat:v{{ .Version }}-amd64"
- "ghcr.io/vshn/appcat:v{{ .Version }}-arm64"
- "ghcr.io/vshn/appcat-apiserver:v{{ .Version }}-amd64"
- "ghcr.io/vshn/appcat-apiserver:v{{ .Version }}-arm64"

release:
prerelease: auto

0 comments on commit 13926a3

Please sign in to comment.