-
Notifications
You must be signed in to change notification settings - Fork 2
/
.goreleaser.yaml
60 lines (56 loc) · 1.51 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
55
56
57
58
59
60
builds:
- id: darwin-amd64
main: ./
goos:
- darwin
goarch:
- amd64
- arm64
env:
- PKG_CONFIG_SYSROOT_DIR=/sysroot/macos/amd64
- PKG_CONFIG_PATH=/sysroot/macos/amd64/usr/local/lib/pkgconfig
- CC=o64-clang
- CXX=o64-clang++
flags:
- -mod=readonly
ldflags:
- -s -w -X main.version={{.Version}}
# Use 'binary' to set the final name of your binary.
# This is the name that will be used in archives et al.
binary: bin/chatgpt-tui
archives:
- id: chatgpt-tui
builds:
- darwin-amd64
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format: zip
wrap_in_directory: true
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
release:
prerelease: auto
draft: false
brews:
- name: chatgpt-tui
tap:
owner: tearingItUp786
name: homebrew-tearingitup786
homepage: https://github.com/tearingItUp786/chatgpt-tui
commit_author:
name: tearingitup786
# Setting this will prevent goreleaser to actually try to commit the updated
# formula - instead, the formula file will be stored on the dist folder only,
# leaving the responsibility of publishing it to the user.
# If set to auto, the release will not be uploaded to the homebrew tap
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
#
# Templates: allowed
skip_upload: auto