-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yaml
54 lines (51 loc) · 1.14 KB
/
.goreleaser.yaml
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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
project_name: cross-clipboard
version: 2
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- id: "non-linux"
skip: false
env:
- CGO_ENABLED=1
goos:
- windows
- darwin
goarch:
- amd64
- arm64
- id: "linux"
skip: false
goos:
- linux
goarch:
- amd64
- arm64
archives:
- format: tar.gz
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
# Check https://goreleaser.com/customization/homebrew/
brews:
- homepage: 'https://github.com/ntsd/cross-clipboard'
description: 'A multi device clipboard sharing over P2P network.'
directory: Formula
commit_author:
name: ntsd
email: jo06942@gmail.com
repository:
owner: ntsd
name: homebrew-cross-clipboard