-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
165 lines (145 loc) · 3.93 KB
/
.goreleaser.yaml
File metadata and controls
165 lines (145 loc) · 3.93 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
---
version: 2
project_name: tailor
builds:
- main: ./cmd/tailor
binary: tailor
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
- arm64
goamd64:
- v1
goarm64:
- v8.0
ldflags:
- "-s -w -X main.version={{ .Version }}"
archives:
- id: bare
formats:
- binary
name_template: "tailor-{{ .Os }}-{{ .Arch }}"
- id: compressed
formats:
- tar.gz
name_template: "tailor_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
files:
- LICENSE
- README.md
checksum:
algorithm: sha256
name_template: "tailor_{{ .Version }}_checksums.txt"
changelog:
sort: asc
use: github
filters:
exclude:
- "^docs:"
- "^test:"
- "^chore:"
- "^ci:"
release:
draft: false
prerelease: auto
footer: |
## Install
**bin** (any platform):
```shell
bin install github.com/wimpysworld/tailor
```
Requires [`bin`](https://github.com/marcosnils/bin).
**Homebrew**: `brew install wimpysworld/tap/tailor`
**Nix**: `nix run github:wimpysworld/tailor`
**Docker**: `docker run --rm ghcr.io/wimpysworld/tailor --version`
**Native packages**: download `.deb`, `.rpm`, `.apk`, or Arch Linux packages from the assets above. AUR: [`tailor-bin`](https://aur.archlinux.org/packages/tailor-bin).
Tailor needs a GitHub authentication token. Set `GH_TOKEN` or `GITHUB_TOKEN`, or run `gh auth login` locally.
nfpms:
- id: packages
package_name: tailor
vendor: Martin Wimpress
maintainer: "Martin Wimpress <code@wimpress.io>"
description: "Ready-to-wear project templates for GitHub repositories."
homepage: https://github.com/wimpysworld/tailor
license: BlueOak-1.0.0
formats:
- deb
- rpm
- apk
- archlinux
homebrew_casks:
- ids:
- compressed
binaries:
- tailor
repository:
owner: wimpysworld
name: homebrew-tap
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
description: "Ready-to-wear project templates for GitHub repositories."
homepage: https://github.com/wimpysworld/tailor
license: BlueOak-1.0.0
aurs:
- name: tailor-bin
description: "Ready-to-wear project templates for GitHub repositories."
homepage: https://github.com/wimpysworld/tailor
maintainers:
- "Martin Wimpress <code@wimpress.io>"
license: BlueOak-1.0.0
private_key: "{{ .Env.AUR_KEY }}"
git_url: "ssh://aur@aur.archlinux.org/tailor-bin.git"
package: |
install -Dm755 tailor "${pkgdir}/usr/bin/tailor"
nix:
- name: tailor
repository:
owner: wimpysworld
name: nix-packages
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
path: pkgs/tailor/default.nix
description: "Ready-to-wear project templates for GitHub repositories."
homepage: https://github.com/wimpysworld/tailor
license: blueOak100
dockers_v2:
- id: ghcr
dockerfile: Dockerfile
images:
- "ghcr.io/wimpysworld/tailor"
tags:
- "{{ .Version }}"
- "{{ .Major }}.{{ .Minor }}"
- "{{ if not .Prerelease }}latest{{ end }}"
platforms:
- linux/amd64
- linux/arm64
retry:
attempts: 5
delay: 10s
max_delay: 2m
labels:
"org.opencontainers.image.title": "{{ .ProjectName }}"
"org.opencontainers.image.description": "Ready-to-wear project templates for GitHub repositories."
"org.opencontainers.image.source": "{{ .GitURL }}"
"org.opencontainers.image.version": "{{ .Version }}"
"org.opencontainers.image.revision": "{{ .FullCommit }}"
"org.opencontainers.image.created": "{{ .Date }}"
"org.opencontainers.image.licenses": "BlueOak-1.0.0"
signs:
- cmd: cosign
artifacts: checksum
signature: "${artifact}.sigstore.json"
args:
- "sign-blob"
- "--yes"
- "--bundle=${signature}"
- "${artifact}"
docker_signs:
- cmd: cosign
artifacts: all
args:
- "sign"
- "--yes"
- "${artifact}@${digest}"