-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yaml
44 lines (44 loc) · 1 KB
/
.goreleaser.yaml
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
before:
hooks:
- go mod tidy
builds:
- binary: devx
main: "./cmd/devx"
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
archives:
- name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else if eq .Arch "darwin" }}Darwin
{{- else if eq .Arch "linux" }}Linux
{{- else if eq .Arch "windows" }}Windows
{{- else }}{{ .Arch }}{{ end }}
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
brews:
- homepage: "https://devx.stakpak.dev/"
tap:
owner: stakpak
name: homebrew-stakpak
branch: main
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
dockers:
- image_templates:
- "ghcr.io/stakpak/devx:latest"
- "ghcr.io/stakpak/devx:{{ .Tag }}"
- "ghcr.io/stakpak/devx:v{{ .Major }}.{{ .Minor }}"