-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
140 lines (130 loc) Β· 4.17 KB
/
.goreleaser.yml
File metadata and controls
140 lines (130 loc) Β· 4.17 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
version: 2
project_name: vlogxy
git:
tag_sort: -version:creatordate
builds:
- id: amd64
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
ldflags:
- -w=false
- -s=false
flags:
- -trimpath
main: ./cmd/vlogxy/main.go
binary: bin/vlogxy
mod_timestamp: "{{ .CommitTimestamp }}"
tags:
- netgo
builder: go
- id: arm64
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- arm64
ldflags:
- -w=false
- -s=false
flags:
- -trimpath
main: ./cmd/vlogxy/main.go
binary: bin/vlogxy
mod_timestamp: "{{ .CommitTimestamp }}"
tags:
- netgo
builder: go
changelog:
use: github
format: "{{ .SHA }}: {{ .Message }}{{ with .AuthorUsername }} by @{{ . }}{{ end }}"
filters:
exclude:
- Merge pull request
- Merge remote-tracking branch
- Merge branch
groups:
- title: "π New Features π"
regexp: '^.*?(feat|enh|enhancement)(\([[:word:]]+\))??!?:.+$'
order: 100
- title: "π Notable Fixes π"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 200
- title: "β¨ More Improvements β¨"
order: 9999
disable: >-
{{ if eq (index .Env "SKIP_SCM_RELEASE") "true" }}{{true}}{{ else }}{{false}}{{ end }}
dockers:
- id: linux-amd64
goos: linux
goarch: amd64
image_templates:
- "{{ .Env.IMAGE_REPO }}:{{ .Env.VERSION }}-amd64"
- "{{ .Env.IMAGE_REPO }}:latest-amd64"
skip_push: false
dockerfile: "./goreleaser.dockerfile"
use: buildx
ids:
- amd64
build_flag_templates:
- --label=org.opencontainers.image.title="{{ .ProjectName }} - vlogxy"
- --label=org.opencontainers.image.description="Image with vlogxy"
- --label=org.opencontainers.image.url=https://github.com/{{ .Env.GITHUB_OWNER }}/{{ .Env.GITHUB_REPO_NAME }}
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.GITHUB_OWNER }}/{{ .Env.GITHUB_REPO_NAME }}
- --label=org.opencontainers.image.version={{ .Env.VERSION }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=Apache-2.0
- --platform=linux/amd64
- id: linux-arm64
goos: linux
goarch: arm64
image_templates:
- "{{ .Env.IMAGE_REPO }}:{{ .Env.VERSION }}-arm64"
- "{{ .Env.IMAGE_REPO }}:latest-arm64"
skip_push: false
dockerfile: "./goreleaser.dockerfile"
use: buildx
ids:
- arm64
build_flag_templates:
- --label=org.opencontainers.image.title="{{ .ProjectName }} - vlogxy"
- --label=org.opencontainers.image.description="Image with vlogxy"
- --label=org.opencontainers.image.url=https://github.com/{{ .Env.GITHUB_OWNER }}/{{ .Env.GITHUB_REPO_NAME }}
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.GITHUB_OWNER }}/{{ .Env.GITHUB_REPO_NAME }}
- --label=org.opencontainers.image.version={{ .Env.VERSION }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=Apache-2.0
- --platform=linux/arm64/v8
docker_manifests:
- name_template: "{{ .Env.IMAGE_REPO }}:{{ .Env.VERSION }}"
image_templates:
- "{{ .Env.IMAGE_REPO }}:{{ .Env.VERSION }}-amd64"
- "{{ .Env.IMAGE_REPO }}:{{ .Env.VERSION }}-arm64"
skip_push: false
use: docker
- name_template: "{{ .Env.IMAGE_REPO }}:latest"
image_templates:
- "{{ .Env.IMAGE_REPO }}:latest-amd64"
- "{{ .Env.IMAGE_REPO }}:latest-arm64"
skip_push: false
use: docker
release:
github:
owner: "{{ .Env.GITHUB_OWNER }}"
name: "{{ .Env.GITHUB_REPO_NAME }}"
draft: true
replace_existing_draft: true
replace_existing_artifacts: true
prerelease: auto
mode: replace
footer: |
---
**Full Changelog**: https://github.com/{{ .Env.GITHUB_OWNER }}/{{ .Env.GITHUB_REPO_NAME }}/compare/{{ .PreviousTag }}...{{ .Tag }}
disable: >-
{{ if eq (index .Env "SKIP_SCM_RELEASE") "true" }}{{true}}{{ else }}{{false}}{{ end }}