chore: setup CI

This commit is contained in:
Julian Tölle 2024-05-05 00:27:34 +02:00
parent ab668ce310
commit 5f02b442b0
8 changed files with 181 additions and 0 deletions

32
.goreleaser.yaml Normal file
View file

@ -0,0 +1,32 @@
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
version: 1
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of `uname`.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
# use zip for windows archives
format_overrides:
- goos: windows
format: zip
changelog:
# Generated by release-please
disable: true