-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.goreleaser.yaml
82 lines (80 loc) · 1.81 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
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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
project_name: casaos-installer
before:
hooks:
- go generate
- go mod tidy -v
- go run github.com/loeffel-io/ls-lint@latest
- go run github.com/google/go-licenses@latest check . --disallowed_types=restricted
- go test -race -v ./...
builds:
- id: casaos-installer-amd64
binary: build/sysroot/usr/bin/casaos-installer
hooks:
post:
- upx --best --lzma -v --no-progress "{{ .Path }}"
env:
- CC=x86_64-linux-gnu-gcc
ldflags:
- -X main.commit={{.Commit}}
- -X main.date={{.Date}}
- -s
- -w
- -extldflags "-static"
tags:
- musl
- netgo
- osusergo
goos:
- linux
goarch:
- amd64
- id: channel-tool-amd64
binary: build/sysroot/usr/bin/channel-tool
main: ./cmd/channel
env:
- CC=x86_64-linux-gnu-gcc
gcflags:
- all=-N -l
ldflags:
- -X main.commit={{.Commit}}
- -X main.date={{.Date}}
- -s
- -w
- -extldflags "-static"
tags:
- musl
- netgo
- osusergo
goos:
- linux
goarch:
- amd64
archives:
- name_template: >-
{{ .Os }}-{{- if eq .Arch "arm" }}arm-7{{- else }}{{ .Arch }}{{- end }}-{{ .ProjectName }}-v{{ .Version }}
id: casaos-installer
builds:
- casaos-installer-amd64
- channel-tool-amd64
files:
- build/**/*
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
release:
github:
owner: IceWhaleTech
name: CasaOS-Installer
draft: false
prerelease: auto
mode: replace
name_template: "v{{ .Version }}"