Skip to content

Commit

Permalink
workflow config
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmandourah committed Oct 12, 2024
1 parent 57d7a58 commit 359104c
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
project_name: Bazarr-Sync
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- main: ./cmd/bazarr-sync/
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
archives:
- id: executable
name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
release:
draft: true
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
groups:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: Others
order: 999
sort: asc
filters:
exclude:
- '^docs:'
- '^doc:'
- '^test:'
- '^wip:'

0 comments on commit 359104c

Please sign in to comment.