mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-02 12:20:40 +08:00

### Summary - signoz package with goreleaser - frontend deprecation - alertmanager deprecation --------- Signed-off-by: Prashant Shahi <prashant@signoz.io>
42 lines
732 B
YAML
42 lines
732 B
YAML
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json
|
|
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
|
|
version: 2
|
|
|
|
project_name: histogram-quantile
|
|
|
|
monorepo:
|
|
tag_prefix: histogram-quantile/
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
builds:
|
|
- id: signoz
|
|
binary: bin/histogram-quantile
|
|
main: scripts/clickhouse/histogramquantile/main.go
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
goamd64:
|
|
- v1
|
|
goarm64:
|
|
- v8.0
|
|
|
|
archives:
|
|
- formats:
|
|
- tar.gz
|
|
name_template: >-
|
|
{{ .ProjectName }}_{{- .Os }}_{{- .Arch }}
|
|
files:
|
|
- README.md
|
|
- LICENSE
|
|
|
|
release:
|
|
name_template: "histogram-quantile/v{{ .Version }}"
|