-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
215 lines (214 loc) · 5.81 KB
/
.goreleaser.yml
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
project_name: raker
version: 1
before:
hooks:
- make completion manual
builds:
- id: linux
dir: cli
goos:
- linux
goarch:
- amd64
- arm64
- riscv64
ldflags:
- -X 'github.com/AppleGamer22/raker/cmd.Version={{.Version}}'
- -X 'github.com/AppleGamer22/raker/cmd.Hash={{.FullCommit}}'
- id: mac
dir: cli
goos:
- darwin
goarch:
- amd64
- arm64
ldflags:
- -X 'github.com/AppleGamer22/raker/cmd.Version={{.Version}}'
- -X 'github.com/AppleGamer22/raker/cmd.Hash={{.FullCommit}}'
- id: windows
dir: cli
goos:
- windows
goarch:
- amd64
- arm64
ldflags:
- -X 'github.com/AppleGamer22/raker/cmd.Version={{.Version}}'
- -X 'github.com/AppleGamer22/raker/cmd.Hash={{.FullCommit}}'
archives:
- id: unix
builds:
- linux
- mac
name_template: >-
{{- .ProjectName}}_
{{- .Version}}_
{{- if eq .Os "darwin"}}mac{{else}}
{{- .Os}}
{{- end}}_
{{- .Arch}}
files:
- raker.bash
- raker.fish
- raker.zsh
- raker.1
- id: windows
builds:
- windows
format_overrides:
- goos: windows
format: zip
name_template: "{{.ProjectName}}_{{.Version}}_{{.Os}}_{{.Arch}}"
files:
- raker.ps1
- raker.1
nfpms:
- package_name: raker
vendor: AppleGamer22
maintainer: Omri Bornstein <omribor@gmail.com>
homepage: https://github.com/AppleGamer22/raker
license: GPL-3.0
description: A social media scraper with less JavaScript than my previous one.
file_name_template: "{{.ProjectName}}_{{.Version}}_{{.Os}}_{{.Arch}}"
builds:
- linux
dependencies:
- chromium
formats:
- apk
- deb
- rpm
- archlinux
contents:
- src: raker.1
dst: /usr/share/man/man1/raker.1
file_info:
mode: 0644
- src: raker.bash
dst: /usr/share/bash-completion/completions/raker
- src: raker.fish
dst: /usr/share/fish/completions/raker.fish
- src: raker.zsh
dst: /usr/share/zsh/site-functions/_raker
changelog:
use: github
filters:
exclude:
- '^docs:'
- '^test:'
- '^chore'
- typo
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: 'New Features'
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 10
- title: Other work
order: 999
release:
github:
owner: AppleGamer22
name: raker
discussion_category_name: General
footer: |
## Installation
### Arch Linux Distributions
* [`yay`](https://github.com/Jguer/yay):
```bash
yay -S raker-bin
```
* [`paru`](https://github.com/morganamilo/paru):
```bash
paru -S raker-bin
```
### macOS
* [Homebrew Tap](https://github.com/AppleGamer22/homebrew-raker):
```bash
brew install AppleGamer22/tap/raker
```
prerelease: auto
dockers:
- use: buildx
image_templates:
- "docker.io/applegamer22/raker:{{.Version}}"
- "docker.io/applegamer22/raker:latest"
- "ghcr.io/applegamer22/raker:{{.Version}}"
- "ghcr.io/applegamer22/raker:latest"
build_flag_templates:
- "--pull"
- "--platform=linux/amd64,linux/arm64"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.title={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--build-arg VERSION={{.Version}}"
- "--build-arg HASH={{.FullCommit}}"
nix:
- homepage: https://github.com/AppleGamer22/raker
description: A social media scraper with less JavaScript than my previous one.
license: GPL3
repository:
owner: AppleGamer22
name: nur
token: "{{.Env.TAP_GITHUB_TOKEN}}"
commit_author:
name: Omri Bornstein
email: omribor@gmail.com
ids:
- unix
install: |
mkdir -p $out/bin
cp -vr ./{{.ProjectName}} $out/bin/{{.ProjectName}}
installManPage ./{{.ProjectName}}.1
post_install: |
installShellCompletion ./{{.ProjectName}}.*sh
aurs:
- homepage: https://github.com/AppleGamer22/raker
description: A social media scraper with less JavaScript than my previous one.
license: GPL3
maintainers:
- Omri Bornstein <omribor@gmail.com>
contributors:
- Omri Bornstein <omribor@gmail.com>
private_key: "{{.Env.AUR_SSH_PRIVATE_KEY}}"
git_url: ssh://aur@aur.archlinux.org/raker-bin.git
depends:
- chromium
package: |
install -Dm755 raker "${pkgdir}/usr/bin/raker"
install -Dm644 raker.1 "${pkgdir}/usr/share/man/man1/raker.1"
install -Dm644 raker.bash "${pkgdir}/usr/share/bash-completion/completions/raker"
install -Dm644 raker.fish "${pkgdir}/usr/share/fish/vendor_completions.d/raker.fish"
install -Dm644 raker.zsh "${pkgdir}/usr/share/zsh/site-functions/_raker"
commit_author:
name: Omri Bornstein
email: omribor@gmail.com
brews:
- repository:
owner: AppleGamer22
name: homebrew-tap
token: "{{.Env.TAP_GITHUB_TOKEN}}"
download_strategy: CurlDownloadStrategy
commit_author:
name: Omri Bornstein
email: omribor@gmail.com
homepage: https://github.com/AppleGamer22/raker
dependencies:
- chromium
description: A social media scraper with less JavaScript than my previous one.
license: GPL-3.0
install: |
bin.install "raker"
man1.install "raker.1"
bash_completion.install "raker.bash" => "raker"
fish_completion.install "raker.fish"
zsh_completion.install "raker.zsh" => "_raker"
sboms:
- artifacts: archive