-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
64 lines (60 loc) · 1.29 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
builds:
- id: listener
main: ./cmd/listener
binary: listener/bootstrap
flags:
- -tags=lambda.norpc
- -v
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- arm64
hooks:
pre:
- go mod tidy
no_unique_dist_dir: true
- id: orchestrator
main: ./cmd/orchestrator
binary: orchestrator/bootstrap
flags:
- -tags=lambda.norpc
- -v
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- arm64
hooks:
pre:
- go mod tidy
no_unique_dist_dir: true
archives:
- id: listener
builds:
- listener
format: zip
wrap_in_directory: false
strip_parent_binary_folder: true
name_template: listener-lambda
- id: orchestrator
builds:
- orchestrator
format: zip
wrap_in_directory: false
strip_parent_binary_folder: true
name_template: orchestrator-lambda
## Copied from https://github.com/cloudposse/.github/blob/main/.github/goreleaser.yml
## Required to correct working go auto release workflow
## ----- DO NOT CHANGE ----- ##
release:
draft: true
replace_existing_draft: true
replace_existing_artifacts: true
mode: keep-existing
make_latest: false
name_template: '{{.Tag}}'
target_commitish: "{{ .Branch }}"
## ----- DO NOT CHANGE ----- ##