-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
68 lines (63 loc) · 1.56 KB
/
Copy path.goreleaser.yaml
File metadata and controls
68 lines (63 loc) · 1.56 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
version: 2
project_name: superset-telegram-bridge
builds:
- id: bridge
main: ./cmd/superset-telegram-bridge
binary: superset-telegram-bridge
env:
- CGO_ENABLED=0
flags:
- -trimpath
goos:
- linux
goarch:
- amd64
- arm64
ldflags:
- -s -w -X main.version={{ .Version }}
dockers_v2:
- id: bridge
ids:
- bridge
dockerfile: Dockerfile
images:
- ghcr.io/dengaleev/superset-telegram-bridge
tags:
- "{{ .Version }}"
- latest
platforms:
- linux/amd64
- linux/arm64
labels:
org.opencontainers.image.title: "{{ .ProjectName }}"
org.opencontainers.image.description: "Forwards Apache Superset alert and report notifications to a Telegram chat."
org.opencontainers.image.source: "https://github.com/dengaleev/superset-telegram-bridge"
org.opencontainers.image.url: "https://github.com/dengaleev/superset-telegram-bridge"
org.opencontainers.image.version: "{{ .Version }}"
org.opencontainers.image.revision: "{{ .FullCommit }}"
org.opencontainers.image.licenses: "MIT"
archives:
- formats:
- tar.gz
checksum:
name_template: "checksums.txt"
changelog:
use: github
sort: asc
groups:
- title: Features
regexp: '^.*?feat(\(.+\))??!?:.+$'
order: 0
- title: Bug fixes
regexp: '^.*?fix(\(.+\))??!?:.+$'
order: 1
- title: Others
order: 999
filters:
exclude:
- "^docs:"
- "^test:"
- "^chore:"
- "^ci:"
- "Merge pull request"
- "Merge branch"