forked from SafetyCulture/safetyculture-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
116 lines (115 loc) · 2.91 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
# yamllint disable rule:line-length
---
# Make sure to check the documentation at http://goreleaser.com
project_name: safetyculture-exporter
before:
hooks:
- go mod download
env:
- GO111MODULE=on
- CGO_ENABLED=1
- GOPROXY=https://proxy.golang.org
builds:
- id: darwin-amd64
main: ./cmd/safetyculture-exporter/main.go
goos:
- darwin
goarch:
- amd64
env:
- CC=o64-clang
- CXX=o64-clang++
flags:
- -tags=netgo # Force using the go network stack
- -mod=readonly
ldflags:
- -s -w -X github.com/SafetyCulture/safetyculture-exporter/internal/app/version.version={{.Version}}
- id: darwin-arm64
main: ./cmd/safetyculture-exporter/main.go
goos:
- darwin
goarch:
- arm64
env:
- CC=oa64-clang
- CXX=oa64-clang++
flags:
- -tags=netgo # Force using the go network stack
- -mod=readonly
ldflags:
- -s -w -X github.com/SafetyCulture/safetyculture-exporter/internal/app/version.version={{.Version}}
- id: linux-amd64
main: ./cmd/safetyculture-exporter/main.go
goos:
- linux
goarch:
- amd64
env:
- CC=gcc
- CXX=g++
flags:
- -tags=netgo # Force using the go network stack
- -trimpath
- -mod=readonly
ldflags:
- -s -w -X github.com/SafetyCulture/safetyculture-exporter/internal/app/version.version={{.Version}}
- -extldflags "-lc -lrt -lpthread --static"
- id: windows-amd64
main: ./cmd/safetyculture-exporter/main.go
goos:
- windows
goarch:
- amd64
env:
- CC=x86_64-w64-mingw32-gcc
- CXX=x86_64-w64-mingw32-g++
flags:
- -tags=netgo # Force using the go network stack
- -mod=readonly
- -buildmode=exe
ldflags:
- -s -w -X github.com/SafetyCulture/safetyculture-exporter/internal/app/version.version={{.Version}}
dockers:
- image_templates:
- "ghcr.io/safetyculture/safetyculture-exporter:{{ .Tag }}"
- "ghcr.io/safetyculture/safetyculture-exporter:latest"
goos: linux
goarch: amd64
goarm: ''
archives:
- id: safetyculture-exporter
builds:
- darwin-amd64
- darwin-arm64
- linux-amd64
- windows-amd64
replacements:
darwin: macOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64
arm64: ARM
format_overrides:
- goos: windows
format: zip
files:
- README.md
- THIRD_PARTY_NOTICES.md
release:
# If set to true, will not auto-publish the release.
draft: true
# If set to auto, will mark the release as not ready for production
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
# If set to true, will mark the release as not ready for production.
prerelease: auto
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'