-
Notifications
You must be signed in to change notification settings - Fork 3
/
goreleaser.yml
83 lines (67 loc) · 1.59 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
78
79
80
81
82
83
# Build customization
build:
main: ./irsync.go
binary: irsync
ldflags: -a -installsuffix cgo
env:
- CGO_ENABLED=0
# GOOS list to build in.
# For more info refer to https://golang.org/doc/install/source#environment
# Defaults are darwin and linux
goos:
- linux
- darwin
# GOARCH to build in.
# For more info refer to https://golang.org/doc/install/source#environment
# Defaults are 386 and amd64
goarch:
- amd64
- arm
goarm:
- 6
# Archive customization
archive:
# You can change the name of the archive.
# This is parsed with Golang template engine and the following variables.
name_template: "{{.ProjectName}}_{{.Os}}_{{.Arch}}"
# Archive format. Valid options are `tar.gz` and `zip`.
# Default is `zip`
format: tar.gz
# Additional files you want to add to the archive.
# Defaults are any files matching `LICENCE*`, `LICENSE*`,
# `README*` and `CHANGELOG*` (case-insensitive)
files:
- LICENSE
dockers:
-
goos: linux
goarch: amd64
goarm: ''
binary: irsync
image: txn2/irsync
dockerfile: dockerfiles/amd64/Dockerfile
tag_templates:
- latest
- "{{ .Version }}"
-
goos: linux
goarch: arm
goarm: 6
binary: irsync
image: txn2/irsync
dockerfile: dockerfiles/arm/Dockerfile
tag_templates:
- "armhf-{{ .Version }}"
brew:
name: irsync
github:
owner: txn2
name: homebrew-tap
commit_author:
name: Craig Johnston
email: cjimti@gmail.com
folder: Formula
dependencies:
- rsync
homepage: https://github.com/txn2/irsync
description: "Interval rsync."