chore: add goreleaser

This commit is contained in:
2025-06-17 13:04:17 +07:00
parent 5f8e886a34
commit 052b0163cb
6 changed files with 538 additions and 11 deletions

49
.goreleaser.yaml Normal file
View File

@@ -0,0 +1,49 @@
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
version: 2
pro: true
before:
hooks:
- rustup default stable
- cargo install --locked cargo-zigbuild
- cargo fetch --locked
builds:
- builder: rust
flags:
- --release
- --package=coop
targets:
- x86_64-unknown-linux-gnu
- x86_64-apple-darwin
- x86_64-pc-windows-gnu
- aarch64-unknown-linux-gnu
- aarch64-apple-darwin
archives:
- formats: [tar.gz]
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
formats: [zip]
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
release:
footer: >-
---
Released by [GoReleaser](https://github.com/goreleaser/goreleaser).