mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-05 19:56:07 +08:00

* chore: integrate goreleaser for user_scripts and restructuring * ci(goreleaser): add goreleaser workflow * chore(goreleaser): update Makefile and config --------- Signed-off-by: Prashant Shahi <prashant@signoz.io>
46 lines
729 B
YAML
46 lines
729 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
|
|
- cp ../../../LICENSE .
|
|
- cp ../../../README.md .
|
|
|
|
after:
|
|
hooks:
|
|
- rm LICENSE
|
|
- rm README.md
|
|
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
|
|
archives:
|
|
- formats:
|
|
- tar.gz
|
|
name_template: >-
|
|
{{ .ProjectName }}_{{- .Os }}_{{- .Arch }}
|
|
files:
|
|
- README.md
|
|
- LICENSE
|
|
|
|
release:
|
|
footer: >-
|
|
|
|
---
|
|
|
|
Released by [GoReleaser](https://github.com/goreleaser/goreleaser).
|