forked from get-woke/woke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
114 lines (101 loc) · 2.9 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
# This is an example goreleaser.yaml file with some sensible defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- "amd64"
- "386"
- "arm64"
ldflags: -s -w -X github.com/get-woke/woke/cmd.Version={{.Version}} -X github.com/get-woke/woke/cmd.Commit={{.ShortCommit}} -X github.com/get-woke/woke/cmd.Date={{.Date}}
archives:
- format: tar.gz
wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
name_template: '{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
files:
- LICENSE
- README.md
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
checksum:
name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^dev:'
- 'README'
- '^chore(deps):'
- '^ci:'
- Merge pull request
- Merge branch
dockers:
- dockerfile: build/Dockerfile
use: buildx
goos: linux
goarch: amd64
build_flag_templates:
- "--platform=linux/amd64"
image_templates:
- "getwoke/woke:latest-amd64"
- "getwoke/woke:{{ .Major }}.{{ .Minor }}-amd64"
- "getwoke/woke:{{ .RawVersion }}-amd64"
- dockerfile: build/Dockerfile
use: buildx
goos: linux
goarch: arm64
build_flag_templates:
- "--platform=linux/arm64"
image_templates:
- "getwoke/woke:latest-arm64"
- "getwoke/woke:{{ .Major }}.{{ .Minor }}-arm64"
- "getwoke/woke:{{ .RawVersion }}-arm64"
docker_manifests:
- name_template: getwoke/woke:latest
image_templates:
- "getwoke/woke:latest-amd64"
- "getwoke/woke:latest-arm64"
- name_template: getwoke/woke:{{ .Major }}.{{ .Minor }}
image_templates:
- "getwoke/woke:{{ .Major }}.{{ .Minor }}-amd64"
- "getwoke/woke:{{ .Major }}.{{ .Minor }}-arm64"
- name_template: getwoke/woke:{{ .RawVersion }}
image_templates:
- "getwoke/woke:{{ .RawVersion }}-amd64"
- "getwoke/woke:{{ .RawVersion }}-arm64"
brews:
- tap:
owner: get-woke
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
folder: Formula
homepage: https://getwoke.tech
description: Detect non-inclusive language in your source code.
test: |
system "#{bin}/woke --version"
scoop:
bucket:
owner: get-woke
name: scoop-bucket
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
# The project name and current git tag are used in the format string.
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
homepage: https://getwoke.tech
description: Detect non-inclusive language in your source code.
license: MIT
# Persist data between application updates
# persist:
# - "data"
# - "config.toml"