-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy path.goreleaser.yml
40 lines (40 loc) · 993 Bytes
/
.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
project_name: gphotos-uploader-cli
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
- go mod download
builds:
- goos:
- darwin
- linux
goarch:
- amd64
ldflags: -s -w -X=github.com/gphotosuploader/gphotos-uploader-cli/version.versionString={{ .Version }}
checksum:
name_template: 'checksums.txt'
brews:
- tap:
owner: gphotosuploader
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
folder: Formula
commit_author:
name: pacoorozco
email: paco@pacoorozco.info
homepage: https://github.com/gphotosuploader/gphotos-uploader-cli
description: "Mass upload media folders to your Google Photos account(s)"
test: system "#{bin}/gphotos-uploader-cli --help"
install: bin.install "gphotos-uploader-cli"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^dev:'
- 'README'
- 'CHANGELOG'
- 'Merge pull request'
- 'Merge branch'