-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
77 lines (77 loc) · 1.87 KB
/
Copy path.goreleaser.yml
File metadata and controls
77 lines (77 loc) · 1.87 KB
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
version: 2
project_name: migrate
release:
github:
owner: artefactual-labs
name: migrate
before:
hooks:
- ./hack/fetch-temporal-cli.sh
builds:
- id: migrate
main: .
goos:
- linux
- darwin
goarch:
- amd64
- arm64
flags:
- -trimpath
ldflags:
- -s
- -w
- -extldflags="-static"
mod_timestamp: "{{ .CommitTimestamp }}"
env:
- CGO_ENABLED=0
archives:
- formats:
- binary
nfpms:
- id: default
package_name: migrate
formats: [deb, rpm]
vendor: Artefactual Systems Inc.
homepage: "https://github.com/artefactual-labs/migrate"
maintainer: Artefactual Systems Inc. <info@artefactual.com>
description: "Durable orchestration tool for migrating and replicating Archivematica AIPs at scale."
license: Apache 2.0
dependencies: [ca-certificates]
contents:
- src: ./hack/temporal-cli/linux-{{ .Arch }}/temporal
dst: /usr/bin/temporal
type: file
file_info:
mode: 493
overrides:
rpm:
contents:
- src: ./hack/temporal-cli/linux-{{ .Arch }}/temporal
dst: /usr/bin/temporal
type: file
file_info:
mode: 493
- src: ./hack/temporal-cli/LICENSE
dst: /usr/share/licenses/{{ .PackageName }}/temporal-cli.LICENSE
type: file
file_info:
mode: 420
deb:
contents:
- src: ./hack/temporal-cli/linux-{{ .Arch }}/temporal
dst: /usr/bin/temporal
type: file
file_info:
mode: 493
- src: ./hack/temporal-cli/LICENSE
dst: /usr/share/doc/{{ .PackageName }}/temporal-cli.LICENSE
type: file
file_info:
mode: 420
checksum:
name_template: "checksums.txt"
changelog:
use: git
abbrev: 8
groups: []