-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
56 lines (50 loc) · 1.51 KB
/
.goreleaser.yaml
File metadata and controls
56 lines (50 loc) · 1.51 KB
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
version: 2
before:
hooks:
- go test ./...
builds:
- id: linux-amd64
main: ./
binary: groroti
goos:
- linux
goarch:
- amd64
env:
- CC=x86_64-linux-gnu-gcc
- CXX=x86_64-linux-gnu-g++
- PKG_CONFIG_SYSROOT_DIR=/sysroot/linux/amd64
- PKG_CONFIG_PATH=/sysroot/linux/amd64/usr/local/lib/pkgconfig
flags:
- -mod=readonly
ldflags:
- -extldflags "-static"
- -s -w -X main.Version={{.Version}}
dockers:
- use: buildx
goos: linux
goarch: amd64
image_templates:
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY_OWNER }}/groroti:{{ .Version }}"
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY_OWNER }}/groroti:latest"
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY_OWNER }}/groroti:amd64"
build_flag_templates:
- "--platform=linux/amd64"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.title=groroti"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.source={{.GitURL}}"
- "--label=org.opencontainers.image.licenses=MIT"
extra_files:
- config.toml.default
- datadir/
checksum:
# https://goreleaser.com/customization/checksum/
name_template: 'checksums.txt'
snapshot:
# https://goreleaser.com/customization/snapshots/
version_template: "{{ incpatch .Version }}-SNAPSHOT"
source:
# https://goreleaser.com/customization/source/
enabled: true