forked from imldy/chatlog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
159 lines (147 loc) · 4.47 KB
/
Copy path.goreleaser.yaml
File metadata and controls
159 lines (147 loc) · 4.47 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# GoReleaser v2 配置
version: 2
before:
hooks:
- go mod tidy
builds:
- id: chatlog-builds
binary: chatlog
ldflags:
- -s -w -X github.com/sjzar/chatlog/pkg/version.Version={{.Version}}
env:
- CGO_ENABLED=1
goos:
- darwin
- windows
- linux
goarch:
- amd64
- arm64
overrides:
- goos: darwin
goarch: amd64
env:
- CGO_ENABLED=1
- CC=o64-clang
- CXX=o64-clang++
- goos: darwin
goarch: arm64
env:
- CGO_ENABLED=1
- CC=oa64-clang
- CXX=oa64-clang++
- goos: windows
goarch: amd64
env:
- CGO_ENABLED=1
- CC=x86_64-w64-mingw32-gcc
- CXX=x86_64-w64-mingw32-g++
- goos: windows
goarch: arm64
env:
- CGO_ENABLED=1
- CC=/llvm-mingw/bin/aarch64-w64-mingw32-gcc
- CXX=/llvm-mingw/bin/aarch64-w64-mingw32-g++
- goos: linux
goarch: amd64
env:
- CGO_ENABLED=1
- CC=x86_64-linux-gnu-gcc
- CXX=x86_64-linux-gnu-g++
- goos: linux
goarch: arm64
env:
- CGO_ENABLED=1
- CC=aarch64-linux-gnu-gcc
- CXX=aarch64-linux-gnu-g++
upx:
- enabled: true
goos: [darwin, windows, linux]
goarch: [amd64, arm64]
compress: best
lzma: true
archives:
- id: default
formats: tar.gz
name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- .Os }}_
{{- .Arch }}
format_overrides:
- goos: windows
formats: zip
files:
- LICENSE
- README.md
checksum:
name_template: 'checksums.txt'
algorithm: sha256
# 配置 GitHub Release
release:
draft: true
prerelease: auto
mode: replace
# Docker 镜像配置
# FIXME: 等待 goreleaser 2.12 更新后使用 dockers_v2
dockers:
- image_templates:
- "ghcr.io/sjzar/chatlog:{{ .Tag }}-amd64"
- "sjzar/chatlog:{{ .Tag }}-amd64"
dockerfile: Dockerfile
extra_files:
- script/docker-entrypoint.sh
use: buildx
goos: linux
goarch: amd64
build_flag_templates:
- "--platform=linux/amd64"
- "--label=org.opencontainers.image.title={{.ProjectName}}"
- "--label=org.opencontainers.image.description=chat log tool, easily use your own chat data."
- "--label=org.opencontainers.image.url=https://github.com/sjzar/chatlog"
- "--label=org.opencontainers.image.source=https://github.com/sjzar/chatlog"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.licenses=Apache-2.0"
- image_templates:
- "ghcr.io/sjzar/chatlog:{{ .Tag }}-arm64"
- "sjzar/chatlog:{{ .Tag }}-arm64"
dockerfile: Dockerfile
extra_files:
- script/docker-entrypoint.sh
use: buildx
goos: linux
goarch: arm64
build_flag_templates:
- "--platform=linux/arm64"
- "--label=org.opencontainers.image.title={{.ProjectName}}"
- "--label=org.opencontainers.image.description=chat log tool, easily use your own chat data."
- "--label=org.opencontainers.image.url=https://github.com/sjzar/chatlog"
- "--label=org.opencontainers.image.source=https://github.com/sjzar/chatlog"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.licenses=Apache-2.0"
# Docker manifest 配置用于多架构镜像
docker_manifests:
# GitHub Container Registry manifests
- name_template: "ghcr.io/sjzar/chatlog:{{ .Tag }}"
image_templates:
- "ghcr.io/sjzar/chatlog:{{ .Tag }}-amd64"
- "ghcr.io/sjzar/chatlog:{{ .Tag }}-arm64"
# Docker Hub manifests
- name_template: "sjzar/chatlog:{{ .Tag }}"
image_templates:
- "sjzar/chatlog:{{ .Tag }}-amd64"
- "sjzar/chatlog:{{ .Tag }}-arm64"
# GitHub Container Registry latest
- name_template: "{{ if not .Prerelease }}ghcr.io/sjzar/chatlog:latest{{ end }}"
image_templates:
- "ghcr.io/sjzar/chatlog:{{ .Tag }}-amd64"
- "ghcr.io/sjzar/chatlog:{{ .Tag }}-arm64"
# Docker Hub latest
- name_template: "{{ if not .Prerelease }}sjzar/chatlog:latest{{ end }}"
image_templates:
- "sjzar/chatlog:{{ .Tag }}-amd64"
- "sjzar/chatlog:{{ .Tag }}-arm64"