-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
78 lines (69 loc) · 1.95 KB
/
.goreleaser.yaml
File metadata and controls
78 lines (69 loc) · 1.95 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
78
# Copyright 2026 Phillip Cloud
# Licensed under the Apache License, Version 2.0
version: 2
before:
hooks:
- go mod vendor
builds:
- main: ./cmd/micasa
binary: micasa
env:
- CGO_ENABLED=0
flags:
- -trimpath
ldflags:
- -X main.version={{ .Version }}
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
archives:
- name_template: "micasa_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
formats: [zip]
checksum:
name_template: checksums.txt
algorithm: sha256
changelog:
disable: true
dockers_v2:
- images:
- "ghcr.io/micasa-dev/micasa"
tags:
- "{{ .Version }}"
- "{{ .Major }}.{{ .Minor }}"
- "{{ .Major }}"
- latest
platforms:
- linux/amd64
- linux/arm64
sbom: false
flags:
- "--provenance=false"
labels:
"org.opencontainers.image.title": micasa
"org.opencontainers.image.description": Terminal UI for managing home projects and maintenance
"org.opencontainers.image.source": https://github.com/micasa-dev/micasa
"org.opencontainers.image.url": https://micasa.dev
"org.opencontainers.image.documentation": https://micasa.dev/docs/
"org.opencontainers.image.licenses": Apache-2.0
"org.opencontainers.image.version": "{{ .Version }}"
annotations:
"org.opencontainers.image.title": micasa
"org.opencontainers.image.description": Terminal UI for managing home projects and maintenance
"org.opencontainers.image.source": https://github.com/micasa-dev/micasa
"org.opencontainers.image.url": https://micasa.dev
"org.opencontainers.image.documentation": https://micasa.dev/docs/
"org.opencontainers.image.licenses": Apache-2.0
"org.opencontainers.image.version": "{{ .Version }}"
source:
enabled: true
prefix_template: "{{ .ProjectName }}-{{ .Version }}/"
files:
- vendor/**
release:
mode: keep-existing