chore: setup CI (#1)

This commit is contained in:
Julian Tölle 2024-05-05 00:37:08 +02:00 committed by GitHub
parent ab668ce310
commit 2db1c01a62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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