forked from temporalio/temporal-worker-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.latest.yml
More file actions
76 lines (66 loc) · 2.5 KB
/
.goreleaser.latest.yml
File metadata and controls
76 lines (66 loc) · 2.5 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
version: 2
env:
- GITHUB_REPOSITORY={{ if index .Env "GITHUB_REPOSITORY" }}{{ .Env.GITHUB_REPOSITORY }}{{ else }}temporalio/temporal-worker-controller{{ end }}
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
# Only build Docker images with 'latest' tag
dockers:
- image_templates:
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY }}:latest-amd64"
dockerfile: Dockerfile.goreleaser
use: buildx
build_flag_templates:
- --platform=linux/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/{{ .Env.GITHUB_REPOSITORY }}
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.GITHUB_REPOSITORY }}
- --label=org.opencontainers.image.version=latest
- --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
- image_templates:
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY }}:latest-arm64"
dockerfile: Dockerfile.goreleaser
use: buildx
build_flag_templates:
- --platform=linux/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/{{ .Env.GITHUB_REPOSITORY }}
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.GITHUB_REPOSITORY }}
- --label=org.opencontainers.image.version=latest
- --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: "ghcr.io/{{ .Env.GITHUB_REPOSITORY }}:latest"
image_templates:
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY }}:latest-amd64"
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY }}:latest-arm64"