-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
39 lines (37 loc) · 876 Bytes
/
.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
version: 2
builds:
- id: binary
main: .
env:
- CGO_ENABLED=0
flags:
- -trimpath
ldflags:
- -s -w -X main.version=v{{ .Version }}
goos:
- linux
- darwin
goarch:
- '386'
- amd64
- arm
- arm64
goarm:
- '7'
kos:
- build: binary
labels:
org.opencontainers.image.title: release-installer
org.opencontainers.image.description: A simple tool to install package from GitLab release
org.opencontainers.image.url: https://github.com/zachcheung/release-installer
org.opencontainers.image.source: https://github.com/zachcheung/release-installer
org.opencontainers.image.licenses: MIT
platforms:
- linux/amd64
tags:
- 'v{{ .Version }}'
- '{{ .FullCommit }}'
- latest
sbom: none
bare: true
preserve_import_paths: false