-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy path.goreleaser.publish-images.yml
More file actions
85 lines (76 loc) · 2.78 KB
/
.goreleaser.publish-images.yml
File metadata and controls
85 lines (76 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
version: 2
before:
hooks:
- go mod download
announce:
skip: true
changelog:
disable: true
release:
disable: true
builds:
- id: nix
dir: cmd
binary: temporal-worker-controller
ldflags:
- -s -w -X github.com/temporalio/temporal-worker-controller/internal/controller.Version={{.Version}}
goarch:
- amd64
- arm64
goos:
- linux
env:
- CGO_ENABLED=0
checksum:
disable: true
# Build Docker images with the tag provided by IMAGE_TAG
dockers:
- ids:
- nix
goos: linux
goarch: amd64
image_templates:
- "temporalio/temporal-worker-controller:{{ .Env.IMAGE_TAG }}-amd64"
dockerfile: Dockerfile.goreleaser
use: buildx
build_flag_templates:
- --platform=linux/amd64
- --cache-from=type=gha,scope=amd64
- --cache-to=type=gha,mode=max,scope=amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description=Temporal Worker Controller for Kubernetes
- --label=org.opencontainers.image.url=https://github.com/temporalio/temporal-worker-controller
- --label=org.opencontainers.image.source=https://github.com/temporalio/temporal-worker-controller
- --label=org.opencontainers.image.version={{ .Env.IMAGE_TAG }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=MIT
extra_files:
- LICENSE
- ids:
- nix
goos: linux
goarch: arm64
image_templates:
- "temporalio/temporal-worker-controller:{{ .Env.IMAGE_TAG }}-arm64"
dockerfile: Dockerfile.goreleaser
use: buildx
build_flag_templates:
- --platform=linux/arm64
- --cache-from=type=gha,scope=arm64
- --cache-to=type=gha,mode=max,scope=arm64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description=Temporal Worker Controller for Kubernetes
- --label=org.opencontainers.image.url=https://github.com/temporalio/temporal-worker-controller
- --label=org.opencontainers.image.source=https://github.com/temporalio/temporal-worker-controller
- --label=org.opencontainers.image.version={{ .Env.IMAGE_TAG }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=MIT
extra_files:
- LICENSE
docker_manifests:
- name_template: "temporalio/temporal-worker-controller:{{ .Env.IMAGE_TAG }}"
image_templates:
- "temporalio/temporal-worker-controller:{{ .Env.IMAGE_TAG }}-amd64"
- "temporalio/temporal-worker-controller:{{ .Env.IMAGE_TAG }}-arm64"