-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
77 lines (72 loc) · 1.6 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
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
project_name: zeronet2web
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:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: arm
goarm: 6
- goos: windows
goarch: arm64
ldflags:
- -s -w -X main.gitRev="{{.ShortCommit}}" -X main.buildTime="{{.CommitDate}}"
asmflags:
- all=-trimpath={{.Env.GOPATH}}
- ./dontoptimizeme=-N
gcflags:
- all=-trimpath={{.Env.GOPATH}}
archives:
-
id: zeronet2web
format: tar.gz
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
files:
- templates/**/*
- assets/**/*
- LICENSE.txt
signs:
- artifacts: all
signature: "${artifact}.asc"
args: ["--armor","--detach-sign", "${artifact}"]
checksum:
name_template: 'checksums.txt'
algorithm: sha512
snapshot:
name_template: "{{ .Tag }}"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
dockers:
-
id: zeronet2web
goos: linux
goarch: amd64
dockerfile: "goreleaser.dockefile"
extra_files:
- templates/
- LICENSE.txt
- robots.txt
- assets/
image_templates:
- "chenjia404/{{.ProjectName}}:latest"