Skip to content

Commit

Permalink
Goreleaser config
Browse files Browse the repository at this point in the history
  • Loading branch information
ringtailsoftware committed Dec 16, 2024
1 parent cc62a6c commit 54e7995
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com

# The lines below are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/need to use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj

version: 2

builds:
- builder: zig
flags:
- -Doptimize=ReleaseSmall
targets:
- x86_64-linux
- x86_64-windows
- aarch64-linux
- x86_64-macos
- aarch64-macos

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 }}
# use zip for windows archives
format_overrides:
- goos: windows
format: zip

changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"

release:
footer: >-
---
Released by [GoReleaser](https://github.com/goreleaser/goreleaser).

0 comments on commit 54e7995

Please sign in to comment.