-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.goreleaser.docker.yaml
More file actions
94 lines (86 loc) · 3.32 KB
/
Copy path.goreleaser.docker.yaml
File metadata and controls
94 lines (86 loc) · 3.32 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
86
87
88
89
90
91
92
93
94
# Copyright 2023 The Authors (see AUTHORS file)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
env:
# Global env vars for Go build.
- 'CGO_ENABLED=0'
- 'GO111MODULE=on'
- 'GOPROXY=https://proxy.golang.org,direct'
before:
hooks:
- 'go mod tidy'
builds:
- id: 'server'
main: './cmd/minty'
binary: 'minty'
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- '-a'
- '-trimpath'
ldflags:
- '-s'
- '-w'
- '-X={{ .ModulePath }}/pkg/version.Name=github-token-minter-server'
- '-X={{ .ModulePath }}/pkg/version.Version={{ .Version }}'
- '-X={{ .ModulePath }}/pkg/version.Commit={{ .Commit }}'
- '-extldflags=-static'
goos:
- 'linux'
goarch:
- 'amd64'
- 'arm64'
dockers:
- ids:
- 'server'
use: 'buildx'
goos: 'linux'
goarch: 'amd64'
image_templates:
- '{{ .Env.DOCKER_REPO }}/github-token-minter-server:{{ .Env.DOCKER_TAG }}-amd64'
build_flag_templates:
- '--platform=linux/amd64'
- '--pull'
- '--label=org.opencontainers.image.created={{ .CommitTimestamp }}'
- '--label=org.opencontainers.image.description=GitHub Token Minter server is a service to create GitHub auth tokens via OIDC escalation.'
- '--label=org.opencontainers.image.licenses=Apache-2.0'
- '--label=org.opencontainers.image.name=github-token-minter-server'
- '--label=org.opencontainers.image.revision={{ .FullCommit }}'
- '--label=org.opencontainers.image.source={{ .GitURL }}'
- '--label=org.opencontainers.image.title=github-token-minter-server'
- '--label=org.opencontainers.image.version={{ .Version }}'
- ids:
- 'server'
use: 'buildx'
goos: 'linux'
goarch: 'arm64'
image_templates:
- '{{ .Env.DOCKER_REPO }}/github-token-minter-server:{{ .Env.DOCKER_TAG }}-arm64'
build_flag_templates:
- '--platform=linux/arm64'
- '--pull'
- '--label=org.opencontainers.image.created={{ .CommitTimestamp }}'
- '--label=org.opencontainers.image.description=GitHub Token Minter server is a service to create GitHub auth tokens via OIDC escalation.'
- '--label=org.opencontainers.image.licenses=Apache-2.0'
- '--label=org.opencontainers.image.name=github-token-minter-server'
- '--label=org.opencontainers.image.revision={{ .FullCommit }}'
- '--label=org.opencontainers.image.source={{ .GitURL }}'
- '--label=org.opencontainers.image.title=github-token-minter-server'
- '--label=org.opencontainers.image.version={{ .Version }}'
docker_manifests:
- image_templates:
- '{{ .Env.DOCKER_REPO }}/github-token-minter-server:{{ .Env.DOCKER_TAG }}-amd64'
- '{{ .Env.DOCKER_REPO }}/github-token-minter-server:{{ .Env.DOCKER_TAG }}-arm64'
# TODO: Follow up on signing.
# Disable SCM release we only want docker release here.
release:
disable: true