-
Notifications
You must be signed in to change notification settings - Fork 10
/
.goreleaser.yml
84 lines (84 loc) · 1.91 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
84
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- 386
- amd64
- arm
- arm64
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath
ldflags:
- -s -w
- -X "github.com/PeerXu/meepo/pkg/util/version.Version={{ .Version }}"
- -X "github.com/PeerXu/meepo/pkg/util/version.GoVersion={{ .Env.GOVERSION }}"
- -X "github.com/PeerXu/meepo/pkg/util/version.GitHash={{ .Commit }}"
- -X "github.com/PeerXu/meepo/pkg/util/version.Built={{ .CommitDate }}"
checksum:
name_template: 'checksums.txt'
archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
format_overrides:
- goos: windows
format: zip
files:
- none*
release:
# Same as for github
# Note: it can only be one: either github, gitlab or gitea
github:
owner: PeerXu
name: meepo
draft: true
snapcrafts:
- name: meepo
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
summary: Connect to your service without public IP in p2p channel
description: |
Meepo help you to build your private network over Internet in easy way.
grade: stable
confinement: strict
publish: true
extra_files:
- source: bin/meepod.wrapper
destination: meepod.wrapper
mode: 0755
layout:
/etc/meepo:
bind: $SNAP_DATA/etc
apps:
meepod:
daemon: simple
command: meepod.wrapper
plugs:
- network
- network-bind
meepo:
command: meepo
plugs:
- network
- network-bind
brews:
- description: |
Meepo help you to build your private network over Internet in easy way.
tap:
owner: PeerXu
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
folder: Formula
homepage: https://github.com/PeerXu/meepo
license: MIT
test: |
system "#{bin}/meepo version"
install: |
bin.install "meepo"