-
-
Notifications
You must be signed in to change notification settings - Fork 836
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
49 lines (44 loc) · 917 Bytes
/
.goreleaser.yaml
File metadata and controls
49 lines (44 loc) · 917 Bytes
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
project_name: flow
before:
hooks:
- rustup default stable
- cargo install --locked cargo-zigbuild
builds:
- id: f
builder: rust
binary: f
tool: cargo
command: zigbuild
flags:
- --release
targets:
- aarch64-apple-darwin
- x86_64-apple-darwin
- aarch64-unknown-linux-gnu
- x86_64-unknown-linux-gnu
- id: lin
builder: rust
binary: lin
tool: cargo
command: zigbuild
flags:
- --release
targets:
- aarch64-apple-darwin
- x86_64-apple-darwin
- aarch64-unknown-linux-gnu
- x86_64-unknown-linux-gnu
archives:
- id: default
format: tar.gz
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
builds:
- f
- lin
files:
- LICENSE*
- README*
checksum:
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"
changelog:
sort: asc