Skip to content
This repository has been archived by the owner on Dec 26, 2024. It is now read-only.

Commit

Permalink
fix(build): update goreleaser (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
s0up4200 authored Oct 11, 2023
1 parent 502cf4a commit 70b0b30
Showing 1 changed file with 24 additions and 9 deletions.
33 changes: 24 additions & 9 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ before:

builds:
- id: omegabrr
env:
- CGO_ENABLED=0
goos:
- linux
- windows
Expand All @@ -22,30 +24,43 @@ builds:
goarch: arm64
- goos: darwin
goarch: arm
- goos: freebsd
goarch: arm
- goos: freebsd
goarch: arm64
main: ./cmd/omegabrr/main.go
binary: omegabrr

archives:
- id: omegabrr
builds:
- omegabrr
files:
- none*
replacements:
amd64: x86_64
format_overrides:
- goos: windows
format: zip
name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
release:
prerelease: auto
footer: |
**Full Changelog**: https://github.com/autobrr/omegabrr/compare/{{ .PreviousTag }}...{{ .Tag }}
## Docker images
- `docker pull ghcr.io/autobrr/omegabrr:{{ .Tag }}`
## What to do next?
- Read the [documentation](https://autobrr.com)
- Join our [Discord server](https://discord.gg/WQ2eUycxyT)
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"

changelog:
sort: asc
Expand All @@ -56,10 +71,10 @@ changelog:
- Merge remote-tracking branch
- Merge branch
groups:
- title: 'New Features'
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug fixes'
- title: "Bug fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 10
- title: Other work
Expand Down

0 comments on commit 70b0b30

Please sign in to comment.