-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
76 lines (70 loc) · 1.71 KB
/
Copy path.goreleaser.yaml
File metadata and controls
76 lines (70 loc) · 1.71 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
builds:
- id: github-app-sts-server
main: ./cmd/github-app-sts-server
binary: github-app-sts-server
env:
- CGO_ENABLED=0
flags:
- -trimpath
goos: [linux, darwin]
goarch: [amd64, arm64]
- id: github-app-sts-client
main: ./cmd/github-app-sts-client
binary: github-app-sts-client
env:
- CGO_ENABLED=0
flags:
- -trimpath
goos: [linux, darwin]
goarch: [amd64, arm64]
- id: git-credential-github-app-sts
main: ./cmd/git-credential-github-app-sts
binary: git-credential-github-app-sts
env:
- CGO_ENABLED=0
flags:
- -trimpath
goos: [linux, darwin]
goarch: [amd64, arm64]
archives:
- id: github-app-sts-server
ids: [github-app-sts-server]
formats: [binary]
name_template: "github-app-sts-server-{{ .Os }}-{{ .Arch }}"
- id: github-app-sts-client
ids: [github-app-sts-client]
formats: [binary]
name_template: "github-app-sts-client-{{ .Os }}-{{ .Arch }}"
- id: git-credential-github-app-sts
ids: [git-credential-github-app-sts]
formats: [binary]
name_template: "git-credential-github-app-sts-{{ .Os }}-{{ .Arch }}"
signs:
- cmd: cosign
args:
- sign-blob
- --yes
- --output-signature
- '${signature}'
- '${artifact}'
artifacts: binary
docker_signs:
- cmd: cosign
args:
- sign
- --yes
- '${artifact}'
artifacts: all
dockers_v2:
- ids:
- github-app-sts-server
images:
- us-central1-docker.pkg.dev/etsy-github-tooling-prod/github-app-sts-binaries/github-app-sts-server
dockerfile: Dockerfile
tags:
- 'v{{ .Version }}'
- '{{ .FullCommit }}'
- latest
platforms:
- linux/amd64