42 lines
No EOL
684 B
YAML
42 lines
No EOL
684 B
YAML
version: 2
|
|
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
main: .
|
|
binary: telegram-mcp
|
|
ldflags:
|
|
- -s -w
|
|
|
|
archives:
|
|
- name_template: >-
|
|
{{ .ProjectName }}_
|
|
{{- title .Os }}_
|
|
{{- if eq .Arch "amd64" }}x86_64
|
|
{{- else }}{{ .Arch }}{{ end }}
|
|
format_overrides:
|
|
- goos: windows
|
|
formats: zip
|
|
files: []
|
|
|
|
changelog:
|
|
use: github
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- typo
|
|
- readme
|
|
include:
|
|
- "^feat:"
|
|
|
|
checksum:
|
|
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'
|
|
algorithm: sha256 |