Skip to content

Commit 2527923

Browse files
committed
Fix owner name for GoReleaser
1 parent 8bcf057 commit 2527923

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

.goreleaser.yml

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,43 +21,41 @@ archives:
2121
amd64: x86_64
2222
dockers:
2323
- image_templates:
24-
- ghcr.io/flowpack/{{ .ProjectName }}:{{ .Version }}-amd64
24+
- ghcr.io/Flowpack/{{ .ProjectName }}:{{ .Version }}-amd64
2525
dockerfile: Dockerfile
26-
use: buildx
2726
build_flag_templates:
2827
- --platform=linux/amd64
2928
- --label=org.opencontainers.image.title={{ .ProjectName }}
3029
- --label=org.opencontainers.image.description={{ .ProjectName }}
31-
- --label=org.opencontainers.image.url=https://github.com/flowpack/{{ .ProjectName }}
32-
- --label=org.opencontainers.image.source=https://github.com/flowpack/{{ .ProjectName }}
30+
- --label=org.opencontainers.image.url=https://github.com/Flowpack/{{ .ProjectName }}
31+
- --label=org.opencontainers.image.source=https://github.com/Flowpack/{{ .ProjectName }}
3332
- --label=org.opencontainers.image.version={{ .Version }}
3433
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
3534
- --label=org.opencontainers.image.revision={{ .FullCommit }}
3635
- --label=org.opencontainers.image.licenses=GPL-3.0
3736
- image_templates:
38-
- ghcr.io/flowpack/{{ .ProjectName }}:{{ .Version }}-arm64v8
37+
- ghcr.io/Flowpack/{{ .ProjectName }}:{{ .Version }}-arm64v8
3938
goarch: arm64
4039
dockerfile: Dockerfile
41-
use: buildx
4240
build_flag_templates:
4341
- --platform=linux/arm64/v8
4442
- --label=org.opencontainers.image.title={{ .ProjectName }}
4543
- --label=org.opencontainers.image.description={{ .ProjectName }}
46-
- --label=org.opencontainers.image.url=https://github.com/flowpack/{{ .ProjectName }}
47-
- --label=org.opencontainers.image.source=https://github.com/flowpack/{{ .ProjectName }}
44+
- --label=org.opencontainers.image.url=https://github.com/Flowpack/{{ .ProjectName }}
45+
- --label=org.opencontainers.image.source=https://github.com/Flowpack/{{ .ProjectName }}
4846
- --label=org.opencontainers.image.version={{ .Version }}
4947
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
5048
- --label=org.opencontainers.image.revision={{ .FullCommit }}
5149
- --label=org.opencontainers.image.licenses=GPL-3.0
5250
docker_manifests:
53-
- name_template: ghcr.io/flowpack/{{ .ProjectName }}:{{ .Version }}
51+
- name_template: ghcr.io/Flowpack/{{ .ProjectName }}:{{ .Version }}
5452
image_templates:
55-
- ghcr.io/flowpack/{{ .ProjectName }}:{{ .Version }}-amd64
56-
- ghcr.io/flowpack/{{ .ProjectName }}:{{ .Version }}-arm64v8
57-
- name_template: ghcr.io/flowpack/{{ .ProjectName }}:latest
53+
- ghcr.io/Flowpack/{{ .ProjectName }}:{{ .Version }}-amd64
54+
- ghcr.io/Flowpack/{{ .ProjectName }}:{{ .Version }}-arm64v8
55+
- name_template: ghcr.io/Flowpack/{{ .ProjectName }}:latest
5856
image_templates:
59-
- ghcr.io/flowpack/{{ .ProjectName }}:{{ .Version }}-amd64
60-
- ghcr.io/flowpack/{{ .ProjectName }}:{{ .Version }}-arm64v8
57+
- ghcr.io/Flowpack/{{ .ProjectName }}:{{ .Version }}-amd64
58+
- ghcr.io/Flowpack/{{ .ProjectName }}:{{ .Version }}-arm64v8
6159
checksum:
6260
name_template: 'checksums.txt'
6361
snapshot:

0 commit comments

Comments
 (0)