Skip to content

Commit

Permalink
build: add goreleaser config
Browse files Browse the repository at this point in the history
  • Loading branch information
nicerloop committed Feb 10, 2024
1 parent a16811b commit acd2cf0
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist/
44 changes: 44 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"

brews:
- homepage: "https://example.com/"
description: "Software to create fast and easy drum rolls."
license: "MIT"
skip_upload: true
repository:
name: nicerloop/nicerloop
scoops:
- homepage: "https://example.com/"
description: "Software to create fast and easy drum rolls."
license: MIT
skip_upload: true

0 comments on commit acd2cf0

Please # to comment.