-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
.goreleaser.yml
67 lines (58 loc) · 1.06 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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
project_name: Yakia
before:
hooks:
- go mod tidy
builds:
- id: b1
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
- "386"
binary: yakia
main: ./cmd/yakia/
- id: b2
goos:
- "windows"
binary: yakia
main: ./cmd/yakia/
archives:
- id: a1
builds:
- "b1"
format: tar.gz
format_overrides:
- goos: windows
format: zip
- id: a2
builds:
- "b2"
format: binary
checksum:
name_template: "checksums.txt"
release:
github:
owner: misitebao
name: yakia
draft: true
replace_existing_draft: true
changelog:
skip: true
nfpms:
- homepage: https://github.com/misitebao/yakia
maintainer: Misite Bao <[email protected]>
description: |-
Tools for developers to manage projects.
license: MIT
formats:
- deb
- rpm
- apk
- archlinux